From 2d302c8cb12071443399b0d5fb2e12baae749722 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Tue, 21 Feb 2023 11:58:43 -0800 Subject: [PATCH 1/7] Refactor --- .../unittests/tsserver/compileOnSave.ts | 4 +- .../unittests/tsserver/declarationFileMaps.ts | 2 +- src/testRunner/unittests/tsserver/helpers.ts | 43 ++++++++----------- src/testRunner/unittests/tsserver/plugins.ts | 8 ++-- .../unittests/tsserver/projectErrors.ts | 2 +- 5 files changed, 27 insertions(+), 32 deletions(-) diff --git a/src/testRunner/unittests/tsserver/compileOnSave.ts b/src/testRunner/unittests/tsserver/compileOnSave.ts index cc070b80ed4e7..6a787f5c8cdd7 100644 --- a/src/testRunner/unittests/tsserver/compileOnSave.ts +++ b/src/testRunner/unittests/tsserver/compileOnSave.ts @@ -1043,8 +1043,8 @@ describe("unittests:: tsserver:: compileOnSave:: CompileOnSaveAffectedFileListRe } function logDirtyOfProjects(session: TestSession) { - session.logger.logs.push(`Project1 is dirty: ${session.getProjectService().configuredProjects.get(`/user/username/projects/myproject/app1/tsconfig.json`)!.dirty}`); - session.logger.logs.push(`Project2 is dirty: ${session.getProjectService().configuredProjects.get(`/user/username/projects/myproject/app2/tsconfig.json`)!.dirty}`); + session.logger.log(`Project1 is dirty: ${session.getProjectService().configuredProjects.get(`/user/username/projects/myproject/app1/tsconfig.json`)!.dirty}`); + session.logger.log(`Project2 is dirty: ${session.getProjectService().configuredProjects.get(`/user/username/projects/myproject/app2/tsconfig.json`)!.dirty}`); } function verify(subScenario: string, commandArgs: ts.server.protocol.FileRequestArgs) { diff --git a/src/testRunner/unittests/tsserver/declarationFileMaps.ts b/src/testRunner/unittests/tsserver/declarationFileMaps.ts index bf83feeef2102..ae2966edaf159 100644 --- a/src/testRunner/unittests/tsserver/declarationFileMaps.ts +++ b/src/testRunner/unittests/tsserver/declarationFileMaps.ts @@ -18,7 +18,7 @@ function checkDeclarationFiles(file: File, session: TestSession): void { const project = ts.Debug.checkDefined(session.getProjectService().getDefaultProjectForFile(file.path as ts.server.NormalizedPath, /*ensureProject*/ false)); const program = project.getCurrentProgram()!; const output = ts.getFileEmitOutput(program, ts.Debug.checkDefined(program.getSourceFile(file.path)), /*emitOnlyDtsFiles*/ true); - session.logger.logs.push(`ts.getFileEmitOutput: ${file.path}: ${JSON.stringify(output, undefined, " ")}`); + session.logger.log(`ts.getFileEmitOutput: ${file.path}: ${JSON.stringify(output, undefined, " ")}`); closeFilesForSession([file], session); } diff --git a/src/testRunner/unittests/tsserver/helpers.ts b/src/testRunner/unittests/tsserver/helpers.ts index 33e8ba61a433b..23eed48f5c69f 100644 --- a/src/testRunner/unittests/tsserver/helpers.ts +++ b/src/testRunner/unittests/tsserver/helpers.ts @@ -49,7 +49,8 @@ export interface PostExecAction { } export interface Logger extends ts.server.Logger { - logs: string[]; + logs?: string[]; + log(s: string): void; host?: TestServerHost; } @@ -64,7 +65,7 @@ export function nullLogger(): Logger { startGroup: ts.noop, endGroup: ts.noop, getLogFileName: ts.returnUndefined, - logs: [], + log: ts.noop, }; } @@ -87,6 +88,7 @@ function handleLoggerGroup(logger: Logger, host: TestServerHost | undefined): Lo logger.host = host; const originalInfo = logger.info; logger.info = s => msg(s, ts.server.Msg.Info, s => originalInfo.call(logger, s)); + logger.log = s => originalInfo.call(logger, s); return logger; function msg(s: string, type = ts.server.Msg.Err, write: (s: string) => void) { @@ -121,11 +123,13 @@ export function createLoggerWritingToConsole(host: TestServerHost): Logger { export function createLoggerWithInMemoryLogs(host: TestServerHost): Logger { const logger = createHasErrorMessageLogger(); + const logs: string[] = []; return handleLoggerGroup({ ...logger, + logs, hasLevel: ts.returnTrue, loggingEnabled: ts.returnTrue, - info: s => logger.logs.push( + info: s => logs.push( s.replace(/Elapsed::?\s*\d+(?:\.\d+)?ms/g, "Elapsed:: *ms") .replace(/\"updateGraphDurationMs\"\:\d+(?:\.\d+)?/g, `"updateGraphDurationMs":*`) .replace(/\"createAutoImportProviderProgramDurationMs\"\:\d+(?:\.\d+)?/g, `"createAutoImportProviderProgramDurationMs":*`) @@ -146,26 +150,15 @@ export function createLoggerWithInMemoryLogs(host: TestServerHost): Logger { } export function baselineTsserverLogs(scenario: string, subScenario: string, sessionOrService: { logger: Logger; }) { - ts.Debug.assert(sessionOrService.logger.logs.length); // Ensure caller used in memory logger + ts.Debug.assert(sessionOrService.logger.logs?.length); // Ensure caller used in memory logger Harness.Baseline.runBaseline(`tsserver/${scenario}/${subScenario.split(" ").join("-")}.js`, sessionOrService.logger.logs.join("\r\n")); } -export function appendAllScriptInfos(service: ts.server.ProjectService, logs: string[]) { - logs.push(""); - logs.push(`ScriptInfos:`); - service.filenameToScriptInfo.forEach(info => logs.push(`path: ${info.path} fileName: ${info.fileName}`)); - logs.push(""); -} - -export function appendProjectFileText(project: ts.server.Project, logs: string[]) { - logs.push(""); - logs.push(`Project: ${project.getProjectName()}`); - project.getCurrentProgram()?.getSourceFiles().forEach(f => { - logs.push(JSON.stringify({ fileName: f.fileName, version: f.version })); - logs.push(f.text); - logs.push(""); - }); - logs.push(""); +export function appendAllScriptInfos(session: TestSession) { + session.logger.log(""); + session.logger.log(`ScriptInfos:`); + session.getProjectService().filenameToScriptInfo.forEach(info => session.logger.log(`path: ${info.path} fileName: ${info.fileName}`)); + session.logger.log(""); } export class TestTypingsInstaller extends ts.server.typingsInstaller.TypingsInstaller implements ts.server.ITypingsInstaller { @@ -386,9 +379,11 @@ function patchHostTimeouts( function baselineHost(title: string) { if (!session.logger.hasLevel(ts.server.LogLevel.verbose)) return; - session.logger.logs.push(title); - host.diff(session.logger.logs, hostDiff); - host.serializeWatches(session.logger.logs); + session.logger.log(title); + const logs = session.logger.logs || []; + host.diff(logs, hostDiff); + host.serializeWatches(logs); + if (!session.logger.logs) logs.forEach(log => session.logger.log(log)); hostDiff = host.snap(); host.writtenFiles.clear(); } @@ -785,7 +780,7 @@ export interface CheckAllErrors extends VerifyGetErrRequestBase { skip?: readonly (SkipErrors | undefined)[]; } function checkAllErrors({ session, host, existingTimeouts, files, skip }: CheckAllErrors) { - ts.Debug.assert(session.logger.logs.length); + ts.Debug.assert(session.logger.logs?.length); for (let i = 0; i < files.length; i++) { if (existingTimeouts !== undefined) { host.checkTimeoutQueueLength(existingTimeouts + 1); diff --git a/src/testRunner/unittests/tsserver/plugins.ts b/src/testRunner/unittests/tsserver/plugins.ts index 55617753e7685..d995ab4c66bd8 100644 --- a/src/testRunner/unittests/tsserver/plugins.ts +++ b/src/testRunner/unittests/tsserver/plugins.ts @@ -133,10 +133,10 @@ describe("unittests:: tsserver:: plugins loading", () => { const host = createServerHost([aTs, tsconfig, libFile]); host.require = (_initialPath, moduleName) => { - session.logger.logs.push(`Require:: ${moduleName}`); + session.logger.log(`Require:: ${moduleName}`); return { module: (): ts.server.PluginModule => { - session.logger.logs.push(`PluginFactory Invoke`); + session.logger.log(`PluginFactory Invoke`); return { create: Harness.LanguageService.makeDefaultProxy, getExternalFiles: () => externalFiles[moduleName] @@ -147,7 +147,7 @@ describe("unittests:: tsserver:: plugins loading", () => { }; const session = createSession(host, { logger: createLoggerWithInMemoryLogs(host) }); openFilesForSession([aTs], session); - session.logger.logs.push(`ExternalFiles:: ${JSON.stringify(session.getProjectService().configuredProjects.get(tsconfig.path)!.getExternalFiles())}`); + session.logger.log(`ExternalFiles:: ${JSON.stringify(session.getProjectService().configuredProjects.get(tsconfig.path)!.getExternalFiles())}`); host.writeFile(tsconfig.path, JSON.stringify({ compilerOptions: { @@ -155,7 +155,7 @@ describe("unittests:: tsserver:: plugins loading", () => { } })); host.runQueuedTimeoutCallbacks(); - session.logger.logs.push(`ExternalFiles:: ${JSON.stringify(session.getProjectService().configuredProjects.get(tsconfig.path)!.getExternalFiles())}`); + session.logger.log(`ExternalFiles:: ${JSON.stringify(session.getProjectService().configuredProjects.get(tsconfig.path)!.getExternalFiles())}`); baselineTsserverLogs("plugins", "gets external files with config file reload", session); }); diff --git a/src/testRunner/unittests/tsserver/projectErrors.ts b/src/testRunner/unittests/tsserver/projectErrors.ts index 1b3b34caf2f55..b0b873a773316 100644 --- a/src/testRunner/unittests/tsserver/projectErrors.ts +++ b/src/testRunner/unittests/tsserver/projectErrors.ts @@ -270,7 +270,7 @@ describe("unittests:: tsserver:: Project Errors are reported as appropriate", () projectRootPath: useProjectRoot ? folderPath : undefined } }); - appendAllScriptInfos(session.getProjectService(), session.logger.logs); + appendAllScriptInfos(session); // Since this is not js project so no typings are queued host.checkTimeoutQueueLength(0); From bc756c821e48c04d4a2991653b83f3825bcec6f5 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Tue, 21 Feb 2023 14:07:44 -0800 Subject: [PATCH 2/7] Only write watches state if there is new watch added or deleted marking whats deleted and whats new --- src/testRunner/unittests/tscWatch/helpers.ts | 1 + .../unittests/virtualFileSystemWithWatch.ts | 93 +- ...project-correctly-with-preserveSymlinks.js | 6 - ...-file-from-referenced-project-correctly.js | 6 - .../reports-syntax-errors-in-config-file.js | 58 +- .../demo/updates-with-bad-reference.js | 62 +- .../demo/updates-with-circular-reference.js | 60 +- ...for-changes-to-package-json-main-fields.js | 68 +- ...t-correctly-with-cts-and-mts-extensions.js | 128 +- ...se-different-module-resolution-settings.js | 40 +- ...n-no-files-are-emitted-with-incremental.js | 38 +- ...when-watching-when-no-files-are-emitted.js | 38 +- ...mit-any-files-on-error-with-incremental.js | 108 +- .../does-not-emit-any-files-on-error.js | 108 +- .../creates-solution-in-watch-mode.js | 20 +- .../incremental-updates-in-verbose-mode.js | 68 +- .../when-file-with-no-error-changes.js | 38 +- ...ing-errors-only-changed-file-is-emitted.js | 38 +- .../when-file-with-no-error-changes.js | 24 +- ...ixing-error-files-all-files-are-emitted.js | 24 +- .../when-preserveWatchOutput-is-not-used.js | 68 +- ...veWatchOutput-is-passed-on-command-line.js | 68 +- ...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 | 16 +- ...tches-config-files-that-are-not-present.js | 66 +- ...e-down-stream-project-and-then-fixes-it.js | 50 +- ...ncing-project-even-for-non-local-change.js | 86 +- ...le-is-added,-and-its-subsequent-updates.js | 102 +- ...hanges-and-reports-found-errors-message.js | 164 +- ...not-start-build-of-referencing-projects.js | 44 +- ...le-is-added,-and-its-subsequent-updates.js | 102 +- ...hanges-and-reports-found-errors-message.js | 164 +- ...not-start-build-of-referencing-projects.js | 44 +- ...project-with-extended-config-is-removed.js | 30 +- ...hen-noUnusedParameters-changes-to-false.js | 20 +- .../works-with-extended-source-files.js | 250 +- ...hen-there-are-23-projects-in-a-solution.js | 3238 +---------------- ...when-there-are-3-projects-in-a-solution.js | 152 +- ...when-there-are-5-projects-in-a-solution.js | 224 +- ...when-there-are-8-projects-in-a-solution.js | 668 +--- .../publicApi/with-custom-transformers.js | 36 +- .../reexport/Reports-errors-correctly.js | 66 +- ...e-projects-with-single-watcher-per-file.js | 138 +- .../when-emitting-buildInfo.js | 24 - .../tsc/cancellationToken/when-using-state.js | 24 - ...rough-indirect-symlink-moduleCaseChange.js | 6 - ...ibling-package-through-indirect-symlink.js | 6 - ...ther-symlinked-package-moduleCaseChange.js | 6 - ...age-with-indirect-link-moduleCaseChange.js | 6 - ...er-symlinked-package-with-indirect-link.js | 6 - ...gh-source-and-another-symlinked-package.js | 6 - .../createWatchOfConfigFile.js | 24 +- ...Result-on-WatchCompilerHostOfConfigFile.js | 24 +- .../consoleClearing/with---diagnostics.js | 18 +- .../with---extendedDiagnostics.js | 18 +- .../with---preserveWatchOutput.js | 18 +- ...---diagnostics-or---extendedDiagnostics.js | 18 +- ...ms-correctly-in-incremental-compilation.js | 26 +- ...s-deleted-and-created-as-part-of-change.js | 26 +- ...ndles-new-lines-carriageReturn-lineFeed.js | 18 +- .../handles-new-lines-lineFeed.js | 18 +- .../should-emit-specified-file.js | 54 +- ...elf-if-'--isolatedModules'-is-specified.js | 42 +- ...-if-'--out'-or-'--outFile'-is-specified.js | 42 +- ...should-be-up-to-date-with-deleted-files.js | 22 +- ...-be-up-to-date-with-newly-created-files.js | 20 +- ...-to-date-with-the-reference-map-changes.js | 138 +- ...les-referencing-it-if-its-shape-changed.js | 66 +- ...should-detect-changes-in-non-root-files.js | 44 +- .../should-detect-non-existing-code-file.js | 52 +- .../should-detect-removed-code-file.js | 18 +- ...ll-files-if-a-global-file-changed-shape.js | 42 +- ...ould-return-cascaded-affected-file-list.js | 98 +- ...fine-for-files-with-circular-references.js | 30 +- .../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 | 16 +- ...ltiple-declaration-files-in-the-program.js | 16 +- ...-recursive-directory-watcher-is-invoked.js | 30 +- ...rrors-for-.d.ts-change-with-incremental.js | 82 +- .../errors-for-.d.ts-change.js | 82 +- .../errors-for-.ts-change-with-incremental.js | 74 +- .../errors-for-.ts-change.js | 74 +- ...el-import-that-changes-with-incremental.js | 90 +- ...g-a-deep-multilevel-import-that-changes.js | 90 +- .../export-with-incremental.js | 92 +- .../no-circular-import/export.js | 92 +- .../exports-with-incremental.js | 100 +- .../yes-circular-import/exports.js | 100 +- .../with-noEmitOnError-with-incremental.js | 134 +- .../with-noEmitOnError.js | 134 +- ...rrors-for-.d.ts-change-with-incremental.js | 82 +- .../errors-for-.d.ts-change.js | 82 +- .../errors-for-.ts-change-with-incremental.js | 74 +- .../errors-for-.ts-change.js | 74 +- ...el-import-that-changes-with-incremental.js | 90 +- ...g-a-deep-multilevel-import-that-changes.js | 90 +- .../export-with-incremental.js | 92 +- .../no-circular-import/export.js | 92 +- .../exports-with-incremental.js | 100 +- .../yes-circular-import/exports.js | 100 +- .../with-noEmitOnError-with-incremental.js | 134 +- .../with-noEmitOnError.js | 134 +- ...rrors-for-.d.ts-change-with-incremental.js | 82 +- .../errors-for-.d.ts-change.js | 82 +- .../errors-for-.ts-change-with-incremental.js | 74 +- .../errors-for-.ts-change.js | 74 +- ...el-import-that-changes-with-incremental.js | 90 +- ...g-a-deep-multilevel-import-that-changes.js | 90 +- .../export-with-incremental.js | 92 +- .../no-circular-import/export.js | 92 +- .../exports-with-incremental.js | 100 +- .../yes-circular-import/exports.js | 100 +- .../with-noEmitOnError-with-incremental.js | 134 +- .../default/with-noEmitOnError.js | 134 +- ...rrors-for-.d.ts-change-with-incremental.js | 82 +- .../errors-for-.d.ts-change.js | 82 +- .../errors-for-.ts-change-with-incremental.js | 74 +- .../errors-for-.ts-change.js | 74 +- ...el-import-that-changes-with-incremental.js | 90 +- ...g-a-deep-multilevel-import-that-changes.js | 90 +- .../export-with-incremental.js | 92 +- .../no-circular-import/export.js | 92 +- .../exports-with-incremental.js | 100 +- .../yes-circular-import/exports.js | 100 +- .../with-noEmitOnError-with-incremental.js | 134 +- .../defaultAndD/with-noEmitOnError.js | 134 +- ...rrors-for-.d.ts-change-with-incremental.js | 82 +- .../errors-for-.d.ts-change.js | 82 +- .../errors-for-.ts-change-with-incremental.js | 74 +- .../errors-for-.ts-change.js | 74 +- ...el-import-that-changes-with-incremental.js | 90 +- ...g-a-deep-multilevel-import-that-changes.js | 90 +- .../export-with-incremental.js | 92 +- .../no-circular-import/export.js | 92 +- .../exports-with-incremental.js | 100 +- .../yes-circular-import/exports.js | 100 +- .../with-noEmitOnError-with-incremental.js | 134 +- .../isolatedModules/with-noEmitOnError.js | 134 +- ...rrors-for-.d.ts-change-with-incremental.js | 82 +- .../errors-for-.d.ts-change.js | 82 +- .../errors-for-.ts-change-with-incremental.js | 74 +- .../errors-for-.ts-change.js | 74 +- ...el-import-that-changes-with-incremental.js | 90 +- ...g-a-deep-multilevel-import-that-changes.js | 90 +- .../export-with-incremental.js | 92 +- .../no-circular-import/export.js | 92 +- .../exports-with-incremental.js | 100 +- .../yes-circular-import/exports.js | 100 +- .../with-noEmitOnError-with-incremental.js | 134 +- .../isolatedModulesAndD/with-noEmitOnError.js | 134 +- .../jsxImportSource-option-changed.js | 14 +- .../package-json-is-looked-up-for-file.js | 20 +- .../self-name-package-reference.js | 12 +- ...n-Windows-style-drive-root-is-lowercase.js | 30 +- ...n-Windows-style-drive-root-is-uppercase.js | 30 +- ...ry-symlink-target-and-import-match-disk.js | 34 +- ...le-symlink-target-and-import-match-disk.js | 34 +- ...nging-module-name-with-different-casing.js | 30 +- ...target-matches-disk-but-import-does-not.js | 34 +- ...target-matches-disk-but-import-does-not.js | 34 +- ...link-target,-and-disk-are-all-different.js | 38 +- ...link-target,-and-disk-are-all-different.js | 42 +- ...link-target-agree-but-do-not-match-disk.js | 34 +- ...link-target-agree-but-do-not-match-disk.js | 34 +- ...k-but-directory-symlink-target-does-not.js | 34 +- ...s-disk-but-file-symlink-target-does-not.js | 34 +- ...ative-information-file-location-changes.js | 34 +- ...hen-renaming-file-with-different-casing.js | 30 +- .../with-nodeNext-resolution.js | 26 +- ...editing-module-augmentation-incremental.js | 12 - .../editing-module-augmentation-watch.js | 60 +- ...lpers-backing-types-removed-incremental.js | 12 - ...portHelpers-backing-types-removed-watch.js | 50 +- ...al-with-circular-references-incremental.js | 12 - ...remental-with-circular-references-watch.js | 54 +- ...tSource-backing-types-added-incremental.js | 12 - ...xImportSource-backing-types-added-watch.js | 46 +- ...ource-backing-types-removed-incremental.js | 12 - ...mportSource-backing-types-removed-watch.js | 50 +- ...ImportSource-option-changed-incremental.js | 12 - .../jsxImportSource-option-changed-watch.js | 54 +- .../own-file-emit-with-errors-incremental.js | 12 - .../own-file-emit-with-errors-watch.js | 42 +- ...wn-file-emit-without-errors-incremental.js | 12 - .../own-file-emit-without-errors-watch.js | 42 +- .../with---out-incremental.js | 6 - .../module-compilation/with---out-watch.js | 12 +- .../own-file-emit-with-errors-incremental.js | 12 - .../own-file-emit-with-errors-watch.js | 42 +- ...eters-that-are-not-relative-incremental.js | 12 - ...-parameters-that-are-not-relative-watch.js | 42 +- ...without-commandline-options-incremental.js | 12 - .../without-commandline-options-watch.js | 42 +- .../incremental/tsbuildinfo-has-error.js | 10 +- ...declaration-file-is-deleted-incremental.js | 12 - ...lobal-declaration-file-is-deleted-watch.js | 40 +- .../incremental/with---out-incremental.js | 6 - .../tscWatch/incremental/with---out-watch.js | 12 +- .../diagnostics-from-cache.js | 34 +- ...esolutions-from-file-are-partially-used.js | 58 +- ...en-package-json-with-type-module-exists.js | 34 +- .../package-json-file-is-edited.js | 38 +- .../type-reference-resolutions-reuse.js | 70 +- ...for-changes-to-package-json-main-fields.js | 50 +- .../esm-mode-file-is-edited.js | 30 +- ...nerated-when-the-config-file-has-errors.js | 10 +- ...configFile-contents-when-options-change.js | 26 +- ...rs-document-is-not-contained-in-project.js | 10 +- ...rts-errors-when-the-config-file-changes.js | 42 +- ...en-'--allowArbitraryExtensions'-changes.js | 24 +- ...nostics-when-'--noUnusedLabels'-changes.js | 38 +- ...-a-configured-program-without-file-list.js | 12 +- ...hould-remove-the-module-not-found-error.js | 16 +- ...has-changed-(new-file-in-list-of-files).js | 14 +- ...ot-files-has-changed-(new-file-on-disk).js | 12 +- ...-root-files-has-changed-through-include.js | 14 +- ...config-file-name-with-difference-casing.js | 10 +- ...-when-set-of-root-files-was-not-changed.js | 28 +- .../programUpdates/change-module-to-none.js | 14 +- ...iles-are-reflected-in-project-structure.js | 16 +- .../config-file-includes-the-file.js | 14 +- .../programUpdates/config-file-is-deleted.js | 30 +- ...s-changes-in-lib-section-of-config-file.js | 12 +- ...keys-differ-only-in-directory-seperator.js | 34 +- ...te-configured-project-without-file-list.js | 12 +- .../create-watch-without-config-file.js | 10 +- ...eleted-files-affect-project-structure-2.js | 20 +- .../deleted-files-affect-project-structure.js | 22 +- .../extended-source-files-are-watched.js | 64 +- .../file-in-files-is-deleted.js | 18 +- ...iles-explicitly-excluded-in-config-file.js | 12 +- .../handle-recreated-files-correctly.js | 36 +- ...se-they-were-added-with-tripleSlashRefs.js | 24 +- ...esnt-have-errors,-they-are-not-reported.js | 10 +- ...ndle-@types-if-input-file-list-is-empty.js | 6 +- ...e-tolerated-without-crashing-the-server.js | 12 +- ...tore-the-states-for-configured-projects.js | 34 +- ...estore-the-states-for-inferred-projects.js | 26 +- ...rors-correctly-with-file-not-in-rootDir.js | 30 +- ...s-errors-correctly-with-isolatedModules.js | 30 +- ...non-existing-directories-in-config-file.js | 12 +- ...ting-files-specified-in-the-config-file.js | 12 +- .../declarationDir-is-specified.js | 58 +- ...-outDir-and-declarationDir-is-specified.js | 58 +- .../when-outDir-is-specified.js | 58 +- .../with-outFile.js | 58 +- ...e-is-specified-with-declaration-enabled.js | 58 +- .../without-outDir-or-outFile-is-specified.js | 58 +- ...odule-resolution-changes-in-config-file.js | 28 +- .../should-reflect-change-in-config-file.js | 32 +- ...should-support-files-without-extensions.js | 8 +- ...errors-and-still-try-to-build-a-project.js | 12 +- ...when-file-changes-from-global-to-module.js | 18 +- ...programs-are-not-affected-by-each-other.js | 16 +- ...-from-config-file-path-if-config-exists.js | 14 +- ...tes-diagnostics-and-emit-for-decorators.js | 44 +- ...it-when-useDefineForClassFields-changes.js | 24 +- .../updates-emit-on-jsx-option-change.js | 14 +- ...mit-when-importsNotUsedAsValues-changes.js | 66 +- ...on-emit-is-disabled-in-compiler-options.js | 84 +- .../with-default-options.js | 32 +- .../with-skipDefaultLibCheck.js | 32 +- .../with-skipLibCheck.js | 32 +- .../with-default-options.js | 32 +- .../with-skipDefaultLibCheck.js | 32 +- .../with-skipLibCheck.js | 32 +- ...when-ambient-modules-of-program-changes.js | 16 +- ...orceConsistentCasingInFileNames-changes.js | 28 +- ...s-errors-when-noErrorTruncation-changes.js | 26 +- ...es-errors-when-strictNullChecks-changes.js | 58 +- ...solution-when-resolveJsonModule-changes.js | 26 +- ...and-new-file-is-added-as-part-of-change.js | 16 +- ...owImportingTsExtensions`-of-config-file.js | 30 +- .../when-creating-extensionless-file.js | 26 +- ...n-creating-new-file-in-symlinked-folder.js | 16 +- ...file-is-added-to-the-referenced-project.js | 120 +- ...ibCheck-and-skipDefaultLibCheck-changes.js | 120 +- ...-file-is-changed-but-its-content-havent.js | 28 +- .../on-sample-project.js | 90 +- ...-different-folders-with-no-files-clause.js | 158 +- ...nsitive-references-in-different-folders.js | 162 +- .../on-transitive-references.js | 124 +- ...n-declarationMap-changes-for-dependency.js | 46 +- ...roject-uses-different-module-resolution.js | 20 +- .../tscWatch/resolutionCache/caching-works.js | 42 +- .../watch-with-configFile.js | 34 +- .../watch-without-configFile.js | 24 +- .../loads-missing-files-from-disk.js | 20 +- .../reusing-type-ref-resolution.js | 22 +- ...module-goes-missing-and-then-comes-back.js | 28 +- ...are-global-and-installed-at-later-point.js | 54 +- .../with-modules-linked-to-sibling-folder.js | 22 +- ...cluded-file-with-ambient-module-changes.js | 28 +- ...-no-notification-from-fs-for-index-file.js | 68 +- ...le-resolution-changes-to-ambient-module.js | 38 +- ...der-that-already-contains-@types-folder.js | 32 +- ...rogram-with-files-from-external-library.js | 46 +- ...-prefers-declaration-file-over-document.js | 16 +- ...es-field-when-solution-is-already-built.js | 30 +- ...Symlinks-when-solution-is-already-built.js | 30 +- ...n-has-types-field-with-preserveSymlinks.js | 30 +- ...-package-when-solution-is-already-built.js | 30 +- ...Symlinks-when-solution-is-already-built.js | 30 +- ...th-scoped-package-with-preserveSymlinks.js | 30 +- ...son-has-types-field-with-scoped-package.js | 30 +- .../when-packageJson-has-types-field.js | 30 +- ...ubFolder-when-solution-is-already-built.js | 30 +- ...Symlinks-when-solution-is-already-built.js | 30 +- ...le-from-subFolder-with-preserveSymlinks.js | 30 +- ...-package-when-solution-is-already-built.js | 30 +- ...Symlinks-when-solution-is-already-built.js | 30 +- ...th-scoped-package-with-preserveSymlinks.js | 30 +- ...file-from-subFolder-with-scoped-package.js | 30 +- .../when-referencing-file-from-subFolder.js | 30 +- ...-project-when-solution-is-already-built.js | 26 +- .../with-simple-project.js | 26 +- .../extraFileExtensions-are-supported.js | 14 +- ...not-implement-hasInvalidatedResolutions.js | 48 +- ...st-implements-hasInvalidatedResolutions.js | 48 +- ...noEmit-with-composite-with-emit-builder.js | 108 +- ...it-with-composite-with-semantic-builder.js | 108 +- ...nError-with-composite-with-emit-builder.js | 72 +- ...or-with-composite-with-semantic-builder.js | 72 +- .../watchApi/semantic-builder-emitOnlyDts.js | 42 +- ...createSemanticDiagnosticsBuilderProgram.js | 30 +- ...n-works-when-returned-without-extension.js | 12 +- ...assed-down-to-the-watch-status-reporter.js | 10 +- ...ting-with-emitOnlyDtsFiles-with-outFile.js | 92 +- .../when-emitting-with-emitOnlyDtsFiles.js | 92 +- ...ing-useSourceOfProjectReferenceRedirect.js | 120 +- ...-host-implementing-getParsedCommandLine.js | 78 +- ...-timesouts-on-host-program-gets-updated.js | 12 +- .../fsEvent-for-change-is-repeated.js | 56 +- ...inode-when-rename-event-ends-with-tilde.js | 80 +- ...e-occurs-when-file-is-still-on-the-disk.js | 76 +- ...when-using-file-watching-thats-on-inode.js | 80 +- ...e-occurs-when-file-is-still-on-the-disk.js | 44 +- ...polling-when-renaming-file-in-subfolder.js | 18 +- ...rectory-when-renaming-file-in-subfolder.js | 20 +- ...tchFile-when-renaming-file-in-subfolder.js | 20 +- ...ymlinks-to-folders-in-recursive-folders.js | 26 +- ...hronous-watch-directory-renaming-a-file.js | 54 +- ...ory-with-outDir-and-declaration-enabled.js | 134 +- .../with-non-synchronous-watch-directory.js | 156 +- .../using-dynamic-priority-polling.js | 30 - .../using-fixed-chunk-size-polling.js | 46 +- ...eDirectories-option-extendedDiagnostics.js | 36 +- ...-directory-watching-extendedDiagnostics.js | 74 +- ...ption-with-recursive-directory-watching.js | 74 +- .../with-excludeDirectories-option.js | 36 +- ...excludeFiles-option-extendedDiagnostics.js | 34 +- .../watchOptions/with-excludeFiles-option.js | 34 +- .../with-fallbackPolling-option.js | 16 +- .../with-watchDirectory-option.js | 14 +- ...th-watchFile-as-watch-options-to-extend.js | 12 +- .../watchOptions/with-watchFile-option.js | 12 +- .../loads-missing-files-from-disk.js | 26 +- ...-when-timeout-occurs-after-installation.js | 208 +- ...n-timeout-occurs-inbetween-installation.js | 448 +-- ...-file-with-case-insensitive-file-system.js | 22 +- ...ig-file-with-case-sensitive-file-system.js | 22 +- .../when-calling-goto-definition-of-module.js | 76 +- .../works-using-legacy-resolution-logic.js | 6 - ...quest-when-projectFile-is-not-specified.js | 172 +- ...stRequest-when-projectFile-is-specified.js | 172 +- ...sesOutFile-should-be-true-if-out-is-set.js | 48 +- ...utFile-should-be-true-if-outFile-is-set.js | 48 +- ...tFile-should-not-be-returned-if-not-set.js | 48 +- ...ojects-all-projects-without-projectPath.js | 96 +- ...figProjects-cascaded-affected-file-list.js | 188 +- .../configProjects-circular-references.js | 64 +- .../configProjects-compileOnSave-disabled.js | 54 +- ...Projects-compileOnSave-in-base-tsconfig.js | 80 +- ...ojects-detect-changes-in-non-root-files.js | 154 +- ...onfigProjects-global-file-shape-changed.js | 110 +- .../configProjects-isolatedModules.js | 80 +- .../configProjects-module-shape-changed.js | 248 +- .../compileOnSave/configProjects-noEmit.js | 54 +- .../configProjects-non-existing-code.js | 48 +- .../compileOnSave/configProjects-outFile.js | 80 +- .../configProjects-removed-code.js | 54 +- ...uptodate-with-changes-in-non-open-files.js | 154 +- ...figProjects-uptodate-with-deleted-files.js | 134 +- .../configProjects-uptodate-with-new-files.js | 186 +- ...cts-uptodate-with-reference-map-changes.js | 328 +- ...ileChange-in-global-file-with-composite.js | 92 +- ...ange-in-global-file-with-decorator-emit.js | 92 +- ...FileChange-in-global-file-with-dts-emit.js | 92 +- .../dtsFileChange-in-global-file.js | 92 +- .../dtsFileChange-in-module-file.js | 104 +- .../emit-in-project-with-dts-emit.js | 360 +- ...it-in-project-with-module-with-dts-emit.js | 440 +-- .../emit-in-project-with-module.js | 440 +-- .../tsserver/compileOnSave/emit-in-project.js | 360 +- .../compileOnSave/emit-specified-file.js | 64 +- .../emit-with-richRepsonse-as-false.js | 98 +- .../emit-with-richRepsonse-as-true.js | 98 +- .../emit-with-richRepsonse-as-undefined.js | 98 +- .../tsserver/compileOnSave/line-endings.js | 68 +- ...-not-emit-js-files-in-external-projects.js | 44 +- .../use-projectRoot-as-current-directory.js | 38 +- ...ed-from-two-different-drives-of-windows.js | 96 +- .../reference/tsserver/completions/works.js | 104 +- ...-searching-for-inferred-project-again-2.js | 24 +- ...en-searching-for-inferred-project-again.js | 26 +- .../tsconfig-for-the-file-does-not-exist.js | 50 +- .../tsconfig-for-the-file-exists.js | 44 +- .../when-projectRootPath-is-not-present.js | 6 - ...esent-but-file-is-not-from-project-root.js | 6 - ...oject-as-part-of-configured-file-update.js | 30 +- ...onfig-file-in-a-folder-with-loose-files.js | 58 +- ...-a-configured-project-without-file-list.js | 16 +- ...on-reflected-when-specifying-files-list.js | 56 +- ...e-configured-project-with-the-file-list.js | 6 - ...te-configured-project-without-file-list.js | 6 - ...er-old-one-without-file-being-in-config.js | 526 +-- ...invoked,-ask-errors-on-it-after-old-one.js | 304 +- ...re-old-one-without-file-being-in-config.js | 526 +-- ...nvoked,-ask-errors-on-it-before-old-one.js | 304 +- ...er-old-one-without-file-being-in-config.js | 526 +-- ...invoked,-ask-errors-on-it-after-old-one.js | 398 +- ...re-old-one-without-file-being-in-config.js | 526 +-- ...nvoked,-ask-errors-on-it-before-old-one.js | 468 +-- ...uses-parent-most-node_modules-directory.js | 6 - ...the-extended-configs-of-closed-projects.js | 6 - ...e-extended-configs-of-multiple-projects.js | 162 +- ...re-open-detects-correct-default-project.js | 354 +- ...s-not-jump-to-source-if-inlined-sources.js | 122 +- ...indAllReferences-starting-at-definition.js | 206 +- ...findAllReferences-target-does-not-exist.js | 176 +- .../declarationFileMaps/findAllReferences.js | 206 +- ...rencesFull-definition-is-in-mapped-file.js | 96 +- .../findAllReferencesFull.js | 206 +- ...nitionAndBoundSpan-with-file-navigation.js | 302 +- .../getDefinitionAndBoundSpan.js | 184 +- ...ect-doesnt-include-file-and-its-renamed.js | 74 +- .../getEditsForFileRename.js | 192 +- .../goToDefinition-target-does-not-exist.js | 176 +- .../declarationFileMaps/goToDefinition.js | 184 +- .../declarationFileMaps/goToImplementation.js | 184 +- .../tsserver/declarationFileMaps/goToType.js | 184 +- .../declarationFileMaps/navigateTo.js | 192 +- ...ll-file-is-not-specified-but-project-is.js | 166 +- ...l-neither-file-not-project-is-specified.js | 166 +- .../renameLocations-starting-at-definition.js | 206 +- .../renameLocations-target-does-not-exist.js | 176 +- .../declarationFileMaps/renameLocations.js | 206 +- .../renameLocationsFull.js | 206 +- .../works-with-import-fixes.js | 152 +- ...tled-can-convert-positions-to-locations.js | 62 +- ...-was-updated-and-no-longer-has-the-file.js | 118 +- ...nging-module-name-with-different-casing.js | 304 +- ...hen-renaming-file-with-different-casing.js | 428 +-- .../works-when-taking-position.js | 28 +- ...rks-with-file-moved-to-inferred-project.js | 82 +- .../works-with-multiple-projects.js | 76 +- .../array-destructuring-declaration.js | 56 +- .../const-variable-declaration.js | 56 +- .../nested-object-declaration.js | 56 +- ...nces-that-renames-destructured-property.js | 56 +- .../object-destructuring-declaration.js | 56 +- .../should-get-file-references.js | 114 +- ...ould-skip-lineText-from-file-references.js | 142 +- .../should-not-error.js | 92 +- .../should-not-error.js | 92 +- .../create-inferred-project.js | 6 - ...en-package-json-with-type-module-exists.js | 1726 ++------- .../package-json-file-is-edited.js | 1690 +-------- .../caches-importability-within-a-file.js | 158 +- .../caches-module-specifiers-within-a-file.js | 198 +- ...date-the-cache-when-new-files-are-added.js | 180 +- ...n-in-contained-node_modules-directories.js | 238 +- ...he-cache-when-local-packageJson-changes.js | 198 +- ...-when-module-resolution-settings-change.js | 198 +- ...ache-when-symlinks-are-added-or-removed.js | 180 +- ...-the-cache-when-user-preferences-change.js | 318 +- ...ate-symbols-when-searching-all-projects.js | 40 +- .../navTo/should-de-duplicate-symbols.js | 74 +- .../navTo/should-not-include-type-symbols.js | 90 +- .../navTo/should-work-with-Deprecated.js | 54 +- ...ould-be-marked-if-only-on-string-values.js | 74 +- ...-directives,-they-are-handled-correcrly.js | 408 +-- .../files-are-added-to-inferred-project.js | 48 - ...ternal-module-name-resolution-is-reused.js | 48 - ...-include-auto-type-reference-directives.js | 12 - ...de-referenced-files-from-unopened-files.js | 12 - ...t-go-to-definition-on-module-specifiers.js | 24 - ...-diagnostics-are-returned-with-no-error.js | 48 - .../throws-unsupported-commands.js | 18 - .../getSupportedCodeFixes-can-be-proxied.js | 180 +- ...-external-files-with-config-file-reload.js | 38 +- ...-generated-when-the-config-file-changes.js | 70 +- ...when-the-config-file-doesnt-have-errors.js | 14 +- ...nerated-when-the-config-file-has-errors.js | 14 +- ...-file-opened-and-config-file-has-errors.js | 58 +- ...le-opened-and-doesnt-contain-any-errors.js | 58 +- ...rs-but-suppressDiagnosticEvents-is-true.js | 14 +- ...s-contains-the-project-reference-errors.js | 16 +- ...-same-ambient-module-and-is-also-module.js | 336 +- ...iagnostics-after-noUnusedLabels-changes.js | 60 +- ...project-structure-and-reports-no-errors.js | 310 +- .../getting-errors-before-opening-file.js | 24 - ...-when-timeout-occurs-after-installation.js | 936 +---- ...n-timeout-occurs-inbetween-installation.js | 960 +---- ...pened-right-after-closing-the-root-file.js | 1466 +------- ...hen-json-is-root-file-found-by-tsconfig.js | 162 +- ...json-is-not-root-file-found-by-tsconfig.js | 162 +- ...esnt-exist-on-disk-yet-with-projectRoot.js | 142 +- ...t-exist-on-disk-yet-without-projectRoot.js | 122 +- ...-global-error-gerErr-with-sync-commands.js | 98 +- ...or-returns-includes-global-error-getErr.js | 126 +- ...-includes-global-error-geterrForProject.js | 126 +- ...large-file-size-is-determined-correctly.js | 6 - ...-as-project-build-with-external-project.js | 62 +- ...-on-dependency-and-change-to-dependency.js | 276 +- .../save-on-dependency-and-change-to-usage.js | 276 +- ...pendency-and-local-change-to-dependency.js | 276 +- ...on-dependency-and-local-change-to-usage.js | 276 +- ...y-with-project-and-change-to-dependency.js | 276 +- ...ndency-with-project-and-change-to-usage.js | 276 +- ...-project-and-local-change-to-dependency.js | 276 +- ...-with-project-and-local-change-to-usage.js | 276 +- .../save-on-dependency-with-project.js | 180 +- ...-usage-project-and-change-to-dependency.js | 294 +- ...-with-usage-project-and-change-to-usage.js | 294 +- ...-project-and-local-change-to-dependency.js | 294 +- ...usage-project-and-local-change-to-usage.js | 294 +- .../save-on-dependency-with-usage-project.js | 198 +- .../save-on-dependency.js | 180 +- .../save-on-usage-and-change-to-dependency.js | 294 +- .../save-on-usage-and-change-to-usage.js | 294 +- ...nd-local-change-to-dependency-with-file.js | 294 +- ...on-usage-and-local-change-to-dependency.js | 294 +- ...-and-local-change-to-usage-with-project.js | 294 +- ...save-on-usage-and-local-change-to-usage.js | 294 +- ...e-with-project-and-change-to-dependency.js | 294 +- ...-usage-with-project-and-change-to-usage.js | 294 +- .../save-on-usage-with-project.js | 198 +- .../save-on-usage.js | 198 +- ...-on-dependency-and-change-to-dependency.js | 216 +- ...-save-on-dependency-and-change-to-usage.js | 264 +- ...pendency-and-local-change-to-dependency.js | 216 +- ...on-dependency-and-local-change-to-usage.js | 264 +- ...y-with-project-and-change-to-dependency.js | 216 +- ...ndency-with-project-and-change-to-usage.js | 264 +- ...-project-and-local-change-to-dependency.js | 216 +- ...-with-project-and-local-change-to-usage.js | 264 +- ...pen-and-save-on-dependency-with-project.js | 168 +- ...ject-is-not-open-and-save-on-dependency.js | 168 +- ...save-on-usage-and-change-to-depenedency.js | 216 +- ...n-and-save-on-usage-and-change-to-usage.js | 264 +- ...on-usage-and-local-change-to-dependency.js | 216 +- ...save-on-usage-and-local-change-to-usage.js | 264 +- ...-with-project-and-change-to-depenedency.js | 216 +- ...-usage-with-project-and-change-to-usage.js | 264 +- ...-project-and-local-change-to-dependency.js | 216 +- ...-with-project-and-local-change-to-usage.js | 264 +- ...not-open-and-save-on-usage-with-project.js | 168 +- ...y-project-is-not-open-and-save-on-usage.js | 168 +- ...t-is-not-open-gerErr-with-sync-commands.js | 600 +-- ...n-dependency-project-is-not-open-getErr.js | 216 +- ...cy-project-is-not-open-geterrForProject.js | 696 +--- ...-file-is-open-gerErr-with-sync-commands.js | 774 +--- ...-when-the-depedency-file-is-open-getErr.js | 390 +- ...depedency-file-is-open-geterrForProject.js | 670 +--- ...t-is-not-open-gerErr-with-sync-commands.js | 550 +-- ...n-dependency-project-is-not-open-getErr.js | 198 +- ...cy-project-is-not-open-geterrForProject.js | 638 +--- ...-file-is-open-gerErr-with-sync-commands.js | 712 +--- ...-when-the-depedency-file-is-open-getErr.js | 358 +- ...depedency-file-is-open-geterrForProject.js | 534 +-- .../ancestor-and-project-ref-management.js | 148 +- ...disableSourceOfProjectReferenceRedirect.js | 120 +- ...port-with-referenced-project-when-built.js | 120 +- .../auto-import-with-referenced-project.js | 120 +- ...ssfully-find-references-with-out-option.js | 52 +- ...oes-not-error-on-container-only-project.js | 1016 +----- ...-are-disabled-and-a-decl-map-is-missing.js | 80 +- ...-are-disabled-and-a-decl-map-is-present.js | 80 +- ...s-are-enabled-and-a-decl-map-is-missing.js | 100 +- ...s-are-enabled-and-a-decl-map-is-present.js | 100 +- ...-are-disabled-and-a-decl-map-is-missing.js | 80 +- ...-are-disabled-and-a-decl-map-is-present.js | 80 +- ...s-are-enabled-and-a-decl-map-is-missing.js | 100 +- ...s-are-enabled-and-a-decl-map-is-present.js | 100 +- ...-are-disabled-and-a-decl-map-is-missing.js | 46 +- ...-are-disabled-and-a-decl-map-is-present.js | 48 +- ...s-are-enabled-and-a-decl-map-is-missing.js | 66 +- ...s-are-enabled-and-a-decl-map-is-present.js | 66 +- ...-are-disabled-and-a-decl-map-is-missing.js | 46 +- ...-are-disabled-and-a-decl-map-is-present.js | 54 +- ...s-are-enabled-and-a-decl-map-is-missing.js | 50 +- ...s-are-enabled-and-a-decl-map-is-present.js | 50 +- .../sibling-projects.js | 84 +- ...ding-references-in-overlapping-projects.js | 150 +- ...solution-is-built-with-preserveSymlinks.js | 646 +--- ...-and-has-index.ts-and-solution-is-built.js | 646 +--- ...tion-is-not-built-with-preserveSymlinks.js | 646 +--- ...-has-index.ts-and-solution-is-not-built.js | 646 +--- ...solution-is-built-with-preserveSymlinks.js | 646 +--- ...th-scoped-package-and-solution-is-built.js | 646 +--- ...tion-is-not-built-with-preserveSymlinks.js | 646 +--- ...coped-package-and-solution-is-not-built.js | 646 +--- ...solution-is-built-with-preserveSymlinks.js | 646 +--- ...le-from-subFolder-and-solution-is-built.js | 646 +--- ...tion-is-not-built-with-preserveSymlinks.js | 646 +--- ...rom-subFolder-and-solution-is-not-built.js | 646 +--- ...solution-is-built-with-preserveSymlinks.js | 646 +--- ...th-scoped-package-and-solution-is-built.js | 646 +--- ...tion-is-not-built-with-preserveSymlinks.js | 646 +--- ...coped-package-and-solution-is-not-built.js | 646 +--- ...disableSourceOfProjectReferenceRedirect.js | 120 +- ...ect-when-referenced-project-is-not-open.js | 154 +- ...disableSourceOfProjectReferenceRedirect.js | 158 +- ...project-when-referenced-project-is-open.js | 184 +- ...ject-is-directly-referenced-by-solution.js | 194 +- ...ct-is-indirectly-referenced-by-solution.js | 250 +- ...nced-project-and-using-declaration-maps.js | 76 +- ...ot-file-is-file-from-referenced-project.js | 94 +- ...ces-open-file-through-project-reference.js | 216 +- ...ct-is-indirectly-referenced-by-solution.js | 288 +- ...nction-as-object-literal-property-types.js | 62 +- ...row-function-as-object-literal-property.js | 54 +- ...ss-when-using-arrow-function-assignment.js | 62 +- ...s-when-using-method-of-class-expression.js | 62 +- ...ness-when-using-object-literal-property.js | 62 +- ...cts-are-open-and-one-project-references.js | 210 +- ...ts-have-allowJs-and-emitDeclarationOnly.js | 324 +- ...ng-solution-and-siblings-are-not-loaded.js | 50 +- ...dts-changes-with-timeout-before-request.js | 376 +- .../dependency-dts-changes.js | 324 +- .../dependency-dts-created.js | 446 +-- .../dependency-dts-deleted.js | 440 +-- .../dependency-dts-not-present.js | 410 +-- ...Map-changes-with-timeout-before-request.js | 376 +- .../dependency-dtsMap-changes.js | 324 +- .../dependency-dtsMap-created.js | 446 +-- .../dependency-dtsMap-deleted.js | 446 +-- .../dependency-dtsMap-not-present.js | 440 +-- .../configHasNoReference/rename-locations.js | 440 +-- ...ile-changes-with-timeout-before-request.js | 428 +-- .../usage-file-changes.js | 376 +- ...dts-changes-with-timeout-before-request.js | 376 +- .../dependency-dts-changes.js | 324 +- .../dependency-dts-created.js | 446 +-- .../dependency-dts-deleted.js | 440 +-- .../dependency-dts-not-present.js | 410 +-- ...Map-changes-with-timeout-before-request.js | 376 +- .../dependency-dtsMap-changes.js | 324 +- .../dependency-dtsMap-created.js | 446 +-- .../dependency-dtsMap-deleted.js | 446 +-- .../dependency-dtsMap-not-present.js | 440 +-- ...rce-changes-with-timeout-before-request.js | 428 +-- .../dependency-source-changes.js | 376 +- .../configWithReference/rename-locations.js | 440 +-- ...ile-changes-with-timeout-before-request.js | 428 +-- .../configWithReference/usage-file-changes.js | 376 +- .../when-projects-are-not-built.js | 410 +-- ...dts-changes-with-timeout-before-request.js | 376 +- .../dependency-dts-changes.js | 324 +- .../dependency-dts-created.js | 446 +-- .../dependency-dts-deleted.js | 440 +-- .../dependency-dts-not-present.js | 410 +-- ...Map-changes-with-timeout-before-request.js | 376 +- .../dependency-dtsMap-changes.js | 324 +- .../dependency-dtsMap-created.js | 446 +-- .../dependency-dtsMap-deleted.js | 446 +-- .../dependency-dtsMap-not-present.js | 440 +-- .../disabledSourceRef/rename-locations.js | 440 +-- ...ile-changes-with-timeout-before-request.js | 428 +-- .../disabledSourceRef/usage-file-changes.js | 376 +- ...dts-changes-with-timeout-before-request.js | 980 +---- .../dependency-dts-changes.js | 912 +---- .../dependency-dts-created.js | 1082 +----- .../dependency-dts-deleted.js | 1036 +----- .../dependency-dts-not-present.js | 926 +---- ...Map-changes-with-timeout-before-request.js | 980 +---- .../dependency-dtsMap-changes.js | 912 +---- .../dependency-dtsMap-created.js | 1096 +----- .../dependency-dtsMap-deleted.js | 1068 +----- .../dependency-dtsMap-not-present.js | 994 +---- .../goToDef-and-rename-locations.js | 994 +---- ...ile-changes-with-timeout-before-request.js | 1126 +----- .../usage-file-changes.js | 1048 +----- ...dts-changes-with-timeout-before-request.js | 926 +---- .../dependency-dts-changes.js | 858 +---- .../dependency-dts-created.js | 1044 +----- .../dependency-dts-deleted.js | 1034 +----- .../dependency-dts-not-present.js | 936 +---- ...Map-changes-with-timeout-before-request.js | 926 +---- .../dependency-dtsMap-changes.js | 858 +---- .../dependency-dtsMap-created.js | 1044 +----- .../dependency-dtsMap-deleted.js | 1044 +----- .../dependency-dtsMap-not-present.js | 958 +---- ...rce-changes-with-timeout-before-request.js | 994 +---- .../dependency-source-changes.js | 926 +---- .../gotoDef-and-rename-locations.js | 958 +---- ...ile-changes-with-timeout-before-request.js | 1062 +----- .../configWithReference/usage-file-changes.js | 994 +---- .../when-projects-are-not-built.js | 940 +---- ...dts-changes-with-timeout-before-request.js | 984 +---- .../dependency-dts-changes.js | 916 +---- .../dependency-dts-created.js | 1086 +----- .../dependency-dts-deleted.js | 1040 +----- .../dependency-dts-not-present.js | 930 +---- ...Map-changes-with-timeout-before-request.js | 984 +---- .../dependency-dtsMap-changes.js | 916 +---- .../dependency-dtsMap-created.js | 1100 +----- .../dependency-dtsMap-deleted.js | 1100 +----- .../dependency-dtsMap-not-present.js | 998 +---- .../gotoDef-and-rename-locations.js | 998 +---- ...ile-changes-with-timeout-before-request.js | 1120 +----- .../disabledSourceRef/usage-file-changes.js | 1052 +----- .../can-go-to-definition-correctly.js | 508 +-- ...dts-changes-with-timeout-before-request.js | 436 +-- .../dependency-dts-changes.js | 376 +- .../dependency-dts-created.js | 554 +-- .../dependency-dts-deleted.js | 500 +-- .../dependency-dts-not-present.js | 438 +-- ...Map-changes-with-timeout-before-request.js | 436 +-- .../dependency-dtsMap-changes.js | 376 +- .../dependency-dtsMap-created.js | 514 +-- .../dependency-dtsMap-deleted.js | 508 +-- .../dependency-dtsMap-not-present.js | 478 +-- ...ile-changes-with-timeout-before-request.js | 496 +-- .../usage-file-changes.js | 436 +-- .../can-go-to-definition-correctly.js | 550 +-- ...dts-changes-with-timeout-before-request.js | 474 +-- .../dependency-dts-changes.js | 414 +-- .../dependency-dts-created.js | 610 +--- .../dependency-dts-deleted.js | 610 +--- .../dependency-dts-not-present.js | 550 +-- ...Map-changes-with-timeout-before-request.js | 474 +-- .../dependency-dtsMap-changes.js | 414 +-- .../dependency-dtsMap-created.js | 610 +--- .../dependency-dtsMap-deleted.js | 610 +--- .../dependency-dtsMap-not-present.js | 550 +-- ...rce-changes-with-timeout-before-request.js | 474 +-- .../dependency-source-changes.js | 414 +-- ...ile-changes-with-timeout-before-request.js | 534 +-- .../configWithReference/usage-file-changes.js | 474 +-- .../when-projects-are-not-built.js | 554 +-- .../can-go-to-definition-correctly.js | 576 +-- ...dts-changes-with-timeout-before-request.js | 496 +-- .../dependency-dts-changes.js | 428 +-- .../dependency-dts-created.js | 628 +--- .../dependency-dts-deleted.js | 574 +-- .../dependency-dts-not-present.js | 510 +-- ...Map-changes-with-timeout-before-request.js | 496 +-- .../dependency-dtsMap-changes.js | 428 +-- .../dependency-dtsMap-created.js | 582 +-- .../dependency-dtsMap-deleted.js | 576 +-- .../dependency-dtsMap-not-present.js | 546 +-- ...ile-changes-with-timeout-before-request.js | 564 +-- .../disabledSourceRef/usage-file-changes.js | 496 +-- ...he-session-and-project-is-at-root-level.js | 112 +- ...ession-and-project-is-not-at-root-level.js | 122 +- ...oundUpdate-and-project-is-at-root-level.js | 128 +- ...Update-and-project-is-not-at-root-level.js | 162 +- ...oundUpdate-and-project-is-at-root-level.js | 128 +- ...Update-and-project-is-not-at-root-level.js | 154 +- ...zyConfiguredProjectsFromExternalProject.js | 36 +- .../deferred-files-in-the-project-context.js | 36 +- ...configured-project-that-will-be-removed.js | 118 +- ...-and-closed-affecting-multiple-projects.js | 116 +- ...ith-mixed-content-are-handled-correctly.js | 6 - ...getting-project-from-orphan-script-info.js | 62 +- ...directory-watch-invoke-on-file-creation.js | 596 +-- ...issing-files-added-with-tripleslash-ref.js | 72 +- ...configured-project-that-will-be-removed.js | 94 +- ...tsconfig-script-block-diagnostic-errors.js | 266 +- ...configured-project-that-will-be-removed.js | 120 +- .../projects/tsconfig-script-block-support.js | 88 +- .../projectsWithReferences/sample-project.js | 168 +- ...es-with-deleting-referenced-config-file.js | 72 +- ...ing-transitively-referenced-config-file.js | 128 +- ...ces-with-edit-in-referenced-config-file.js | 80 +- ...ive-references-with-edit-on-config-file.js | 108 +- ...ansitive-references-with-non-local-edit.js | 64 +- ...es-with-deleting-referenced-config-file.js | 76 +- ...ing-transitively-referenced-config-file.js | 136 +- ...les-with-edit-in-referenced-config-file.js | 80 +- ...-without-files-with-edit-on-config-file.js | 104 +- ...ences-without-files-with-non-local-edit.js | 68 +- ...ndles-canonicalization-of-tsconfig-path.js | 38 +- .../handles-text-changes-in-tsconfig.js | 32 +- .../refactors/use-formatting-options.js | 44 +- ...prefixText-and-suffixText-when-disabled.js | 52 +- ...r-is-based-on-file-of-rename-initiation.js | 76 +- .../rename/works-with-fileToRename.js | 132 +- ...-prefixText-and-suffixText-when-enabled.js | 108 +- ...unnecessary-lookup-invalidation-on-save.js | 40 +- ...an-load-typings-that-are-proper-modules.js | 6 - .../disable-suggestion-diagnostics.js | 124 +- ...le-name-from-files-in-different-folders.js | 52 +- ...e-module-name-from-files-in-same-folder.js | 44 +- ...ative-module-name-from-inferred-project.js | 88 +- .../not-sharing-across-references.js | 24 +- .../npm-install-@types-works.js | 268 +- ...le-name-from-files-in-different-folders.js | 52 +- ...e-module-name-from-files-in-same-folder.js | 40 +- ...tore-the-states-for-configured-projects.js | 148 +- ...estore-the-states-for-inferred-projects.js | 182 +- .../sharing-across-references.js | 26 +- ...hould-remove-the-module-not-found-error.js | 124 +- .../resolutionCache/suggestion-diagnostics.js | 124 +- .../suppressed-diagnostic-events.js | 68 +- .../resolutionCache/when-resolution-fails.js | 6 - .../when-resolves-to-ambient-module.js | 6 - ...rnal-project-with-skipLibCheck-as-false.js | 54 +- .../skipLibCheck/jsonly-external-project.js | 54 +- .../skipLibCheck/jsonly-inferred-project.js | 172 +- ...r-in-configured-js-project-with-tscheck.js | 54 +- ...rror-in-configured-project-with-tscheck.js | 54 +- .../reports-semantic-error-with-tscheck.js | 46 +- .../works-for-simple-JavaScript.js | 38 +- ...tion-when-project-compiles-from-sources.js | 624 +--- ...s-in-typings-folder-and-then-recompiles.js | 630 +--- ...mpiles-after-deleting-generated-folders.js | 906 +---- ...ping-when-project-compiles-from-sources.js | 908 +---- ...s-in-typings-folder-and-then-recompiles.js | 784 +--- ...mpiles-after-deleting-generated-folders.js | 958 +---- ...name-in-common-file-renames-all-project.js | 134 +- ...ed-project-and-semantic-operations-fail.js | 102 - ...-include-auto-type-reference-directives.js | 12 - .../throws-on-unsupported-commands.js | 18 - ...portDefault-exportDefault-importDefault.js | 40 +- ...OnlyNamedImport-namedExport-namedImport.js | 46 +- ...lyExportFrom-exportStarFrom-namedImport.js | 46 +- ...OnlyNamedImport-namedExport-namedImport.js | 40 +- ...spaceImport-exportDefault-importDefault.js | 40 +- ...mespaceImport-exportEquals-importEquals.js | 40 +- ...NamespaceImport-namedExport-namedImport.js | 40 +- ...ortFrom-exportNamespaceFrom-namedImport.js | 46 +- ...projects-discover-from-bower_components.js | 36 +- .../typingsInstaller/configured-projects.js | 40 +- ...utions-pointing-to-js-on-typing-install.js | 34 +- .../external-project-watch-options-errors.js | 6 - ...ect-watch-options-in-host-configuration.js | 44 +- .../external-project-watch-options.js | 36 +- .../watchEnvironment/files-at-root.js | 16 +- .../files-at-windows-style-root.js | 16 +- .../watchEnvironment/files-not-at-root.js | 18 +- .../files-not-at-windows-style-root.js | 18 +- .../inferred-project-watch-options-errors.js | 6 - ...ect-watch-options-in-host-configuration.js | 42 +- .../inferred-project-watch-options.js | 32 +- .../project-with-ascii-file-names-with-i.js | 18 +- .../project-with-ascii-file-names.js | 18 +- .../project-with-unicode-file-names.js | 18 +- ...files-starting-with-dot-in-node_modules.js | 122 +- ...polling-when-file-is-added-to-subfolder.js | 82 +- ...rectory-when-file-is-added-to-subfolder.js | 118 +- ...tchFile-when-file-is-added-to-subfolder.js | 118 +- ...watching-files-with-network-style-paths.js | 100 +- ...en-watchFile-is-single-watcher-per-file.js | 18 +- ...excludeDirectories-option-in-configFile.js | 16 +- ...ludeDirectories-option-in-configuration.js | 26 +- ...ackPolling-option-as-host-configuration.js | 32 +- ...th-fallbackPolling-option-in-configFile.js | 32 +- ...hDirectory-option-as-host-configuration.js | 30 +- ...ith-watchDirectory-option-in-configFile.js | 18 +- ...-watchFile-option-as-host-configuration.js | 28 +- .../with-watchFile-option-in-configFile.js | 16 +- 868 files changed, 14447 insertions(+), 162147 deletions(-) diff --git a/src/testRunner/unittests/tscWatch/helpers.ts b/src/testRunner/unittests/tscWatch/helpers.ts index 3cb4f31085eb2..1d635b2cfba4d 100644 --- a/src/testRunner/unittests/tscWatch/helpers.ts +++ b/src/testRunner/unittests/tscWatch/helpers.ts @@ -173,6 +173,7 @@ export function applyEdit(sys: BaselineBase["sys"], baseline: BaselineBase["base edit(sys); baseline.push("Input::"); sys.diff(baseline, oldSnap); + sys.serializeWatches(baseline); return sys.snap(); } diff --git a/src/testRunner/unittests/virtualFileSystemWithWatch.ts b/src/testRunner/unittests/virtualFileSystemWithWatch.ts index 7dfb1f195f381..29b1abe7a6ba7 100644 --- a/src/testRunner/unittests/virtualFileSystemWithWatch.ts +++ b/src/testRunner/unittests/virtualFileSystemWithWatch.ts @@ -4,6 +4,7 @@ import { clone, combinePaths, compareStringsCaseSensitive, + contains, createGetCanonicalFileName, createMultiMap, createSystemWatchFunctions, @@ -159,18 +160,6 @@ function invokeWatcherCallbacks(callbacks: readonly T[] | undefined, invokeCa } } -function createWatcher(map: MultiMap, path: Path, callback: T): FileWatcher { - map.add(path, callback); - let closed = false; - return { - close: () => { - Debug.assert(!closed); - map.remove(path, callback); - closed = true; - } - }; -} - interface CallbackData { cb: TimeOutCallback; args: any[]; @@ -621,8 +610,23 @@ export class TestServerHost implements server.ServerHost, FormatDiagnosticsHost, this.removeFileOrFolder(currentEntry); } + private hasWatchChanges?: boolean; + private createWatcher(map: MultiMap, path: Path, callback: T): FileWatcher { + this.hasWatchChanges = true; + map.add(path, callback); + let closed = false; + return { + close: () => { + Debug.assert(!closed); + map.remove(path, callback); + this.hasWatchChanges = true; + closed = true; + } + }; + } + private watchFileWorker(fileName: string, cb: FileWatcherCallback, pollingInterval: PollingInterval) { - return createWatcher( + return this.createWatcher( this.watchedFiles, this.toFullPath(fileName), { cb, pollingInterval } @@ -638,7 +642,7 @@ export class TestServerHost implements server.ServerHost, FormatDiagnosticsHost, const path = this.toFullPath(fileOrDirectory); // Error if the path does not exist if (this.inodeWatching && !this.inodes?.has(path)) throw new Error(); - const result = createWatcher( + const result = this.createWatcher( recursive ? this.fsWatchesRecursive : this.fsWatches, path, { @@ -1000,13 +1004,15 @@ export class TestServerHost implements server.ServerHost, FormatDiagnosticsHost, baseline.push(""); } + private serializedWatchedFiles: Map | undefined; + private serializedFsWatches: Map | undefined; + private serializedFsWatchesRecursive: Map | undefined; serializeWatches(baseline: string[] = []) { - serializeMultiMap(baseline, "PolledWatches", this.watchedFiles); - baseline.push(""); - serializeMultiMap(baseline, "FsWatches", this.fsWatches); - baseline.push(""); - serializeMultiMap(baseline, "FsWatchesRecursive", this.fsWatchesRecursive); - baseline.push(""); + if (!this.hasWatchChanges) return baseline; + this.serializedWatchedFiles = serializeMultiMap(baseline, "PolledWatches", this.watchedFiles, this.serializedWatchedFiles); + this.serializedFsWatches = serializeMultiMap(baseline, "FsWatches", this.fsWatches, this.serializedFsWatches); + this.serializedFsWatchesRecursive = serializeMultiMap(baseline, "FsWatchesRecursive", this.fsWatchesRecursive, this.serializedFsWatchesRecursive); + this.hasWatchChanges = false; return baseline; } @@ -1109,14 +1115,51 @@ function diffFsEntry(baseline: string[], oldFsEntry: FSEntry | undefined, newFsE } } -function serializeMultiMap(baseline: string[], caption: string, multiMap: MultiMap) { - baseline.push(`${caption}::`); - multiMap.forEach((values, key) => { - baseline.push(`${key}:`); +function serializeMultiMap(baseline: string[], caption: string, multiMap: MultiMap, serialized: Map | undefined) { + let hasChange = diffMap(baseline, caption, multiMap, serialized, /*deleted*/ false); + hasChange = diffMap(baseline, caption, serialized, multiMap, /*deleted*/ true) || hasChange; + if (hasChange) { + serialized = new Map(); + multiMap.forEach((value, key) => serialized!.set(key, new Array(...value))); + } + return serialized; +} + +function diffMap( + baseline: string[], + caption: string, + map: Map | undefined, + old: Map | undefined, + deleted: boolean +) { + let captionAdded = false; + let baselineChanged = false; + let hasChange = false; + map?.forEach((values, key) => { + const existing = old?.get(key); + let addedKey = false; for (const value of values) { - baseline.push(` ${JSON.stringify(value)}`); + const hasExisting = contains(existing, value); + if (deleted && hasExisting) continue; + if (!hasExisting) hasChange = true; + if (!addedKey) { + addBaseline(`${key}:${deleted || existing ? "" : " *new*"}`); + addedKey = true; + } + addBaseline(` ${JSON.stringify(value)}${deleted || hasExisting || !existing ? "" : " *new*"}`); } }); + if (baselineChanged) baseline.push(""); + return hasChange; + + function addBaseline(s: string) { + if (!captionAdded) { + baseline.push(`${caption}${deleted ? " *deleted*" : ""}::`); + captionAdded = true; + } + baseline.push(s); + baselineChanged = true; + } } function baselineOutputs(baseline: string[], output: readonly string[], start: number, end = output.length) { 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 352cf72e3a71a..eff1099ac2bad 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 @@ -124,12 +124,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/user/username/projects/myproject/packages/pkg2/build/const.js] 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 ba7a283822ba1..3d844faac0697 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 @@ -125,12 +125,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/user/username/projects/myproject/packages/pkg2/build/const.js] 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 1f94d7acfeb1b..366e1c4a6ec82 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,18 +56,14 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -173,18 +169,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -220,18 +204,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -327,18 +299,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -375,18 +335,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/b.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] 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 ef584bf3db041..d6e19ca435d80 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-bad-reference.js @@ -246,37 +246,37 @@ Shape signatures in builder refreshed for:: /user/username/projects/demo/core/utilities.ts (used version) PolledWatches:: -/user/username/projects/demo/animals/package.json: +/user/username/projects/demo/animals/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/demo/core/tsconfig.json: +/user/username/projects/demo/core/tsconfig.json: *new* {} -/user/username/projects/demo/tsconfig-base.json: +/user/username/projects/demo/tsconfig-base.json: *new* {} -/user/username/projects/demo/core/utilities.ts: +/user/username/projects/demo/core/utilities.ts: *new* {} -/user/username/projects/demo/animals/tsconfig.json: +/user/username/projects/demo/animals/tsconfig.json: *new* {} -/user/username/projects/demo/animals/animal.ts: +/user/username/projects/demo/animals/animal.ts: *new* {} -/user/username/projects/demo/animals/dog.ts: +/user/username/projects/demo/animals/dog.ts: *new* {} -/user/username/projects/demo/animals/index.ts: +/user/username/projects/demo/animals/index.ts: *new* {} -/user/username/projects/demo/zoo/tsconfig.json: +/user/username/projects/demo/zoo/tsconfig.json: *new* {} -/user/username/projects/demo/zoo/zoo.ts: +/user/username/projects/demo/zoo/zoo.ts: *new* {} -/user/username/projects/demo/tsconfig.json: +/user/username/projects/demo/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/demo/core: +/user/username/projects/demo/core: *new* {} -/user/username/projects/demo/animals: +/user/username/projects/demo/animals: *new* {} -/user/username/projects/demo/zoo: +/user/username/projects/demo/zoo: *new* {} exitCode:: ExitStatus.undefined @@ -531,40 +531,6 @@ 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) -PolledWatches:: -/user/username/projects/demo/animals/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/demo/core/tsconfig.json: - {} -/user/username/projects/demo/tsconfig-base.json: - {} -/user/username/projects/demo/core/utilities.ts: - {} -/user/username/projects/demo/animals/tsconfig.json: - {} -/user/username/projects/demo/animals/animal.ts: - {} -/user/username/projects/demo/animals/dog.ts: - {} -/user/username/projects/demo/animals/index.ts: - {} -/user/username/projects/demo/zoo/tsconfig.json: - {} -/user/username/projects/demo/zoo/zoo.ts: - {} -/user/username/projects/demo/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/demo/core: - {} -/user/username/projects/demo/animals: - {} -/user/username/projects/demo/zoo: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/demo/lib/core/tsconfig.tsbuildinfo] 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 f9fb9a850b92b..46e52ba3b0baa 100644 --- a/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js +++ b/tests/baselines/reference/tsbuildWatch/demo/updates-with-circular-reference.js @@ -167,36 +167,34 @@ Output:: -PolledWatches:: - FsWatches:: -/user/username/projects/demo/animals/tsconfig.json: +/user/username/projects/demo/animals/tsconfig.json: *new* {} -/user/username/projects/demo/tsconfig-base.json: +/user/username/projects/demo/tsconfig-base.json: *new* {} -/user/username/projects/demo/animals/animal.ts: +/user/username/projects/demo/animals/animal.ts: *new* {} -/user/username/projects/demo/animals/dog.ts: +/user/username/projects/demo/animals/dog.ts: *new* {} -/user/username/projects/demo/animals/index.ts: +/user/username/projects/demo/animals/index.ts: *new* {} -/user/username/projects/demo/zoo/tsconfig.json: +/user/username/projects/demo/zoo/tsconfig.json: *new* {} -/user/username/projects/demo/zoo/zoo.ts: +/user/username/projects/demo/zoo/zoo.ts: *new* {} -/user/username/projects/demo/core/tsconfig.json: +/user/username/projects/demo/core/tsconfig.json: *new* {} -/user/username/projects/demo/core/utilities.ts: +/user/username/projects/demo/core/utilities.ts: *new* {} -/user/username/projects/demo/tsconfig.json: +/user/username/projects/demo/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/demo/animals: +/user/username/projects/demo/animals: *new* {} -/user/username/projects/demo/zoo: +/user/username/projects/demo/zoo: *new* {} -/user/username/projects/demo/core: +/user/username/projects/demo/core: *new* {} exitCode:: ExitStatus.undefined @@ -298,38 +296,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/demo/animals/tsconfig.json: - {} -/user/username/projects/demo/tsconfig-base.json: - {} -/user/username/projects/demo/animals/animal.ts: - {} -/user/username/projects/demo/animals/dog.ts: - {} -/user/username/projects/demo/animals/index.ts: - {} -/user/username/projects/demo/zoo/tsconfig.json: - {} -/user/username/projects/demo/zoo/zoo.ts: - {} -/user/username/projects/demo/core/tsconfig.json: - {} -/user/username/projects/demo/core/utilities.ts: - {} -/user/username/projects/demo/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/demo/animals: - {} -/user/username/projects/demo/zoo: - {} -/user/username/projects/demo/core: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/demo/lib/core/utilities.js] 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 646ecec302922..fe3a7744febe3 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 @@ -139,28 +139,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: +/user/username/projects/myproject/packages/pkg2/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/pkg2/const.ts: +/user/username/projects/myproject/packages/pkg2/const.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/index.ts: +/user/username/projects/myproject/packages/pkg2/index.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/other.ts: +/user/username/projects/myproject/packages/pkg2/other.ts: *new* {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/pkg1/index.ts: +/user/username/projects/myproject/packages/pkg1/index.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/package.json: +/user/username/projects/myproject/packages/pkg2/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: +/user/username/projects/myproject/packages/pkg2: *new* {} -/user/username/projects/myproject/packages/pkg1: +/user/username/projects/myproject/packages/pkg1: *new* {} exitCode:: ExitStatus.undefined @@ -353,30 +351,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg2/const.ts: - {} -/user/username/projects/myproject/packages/pkg2/index.ts: - {} -/user/username/projects/myproject/packages/pkg2/other.ts: - {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg1/index.ts: - {} -/user/username/projects/myproject/packages/pkg2/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: - {} -/user/username/projects/myproject/packages/pkg1: - {} - exitCode:: ExitStatus.undefined @@ -449,30 +423,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg2/const.ts: - {} -/user/username/projects/myproject/packages/pkg2/index.ts: - {} -/user/username/projects/myproject/packages/pkg2/other.ts: - {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg1/index.ts: - {} -/user/username/projects/myproject/packages/pkg2/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: - {} -/user/username/projects/myproject/packages/pkg1: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/packages/pkg1/build/index.js] file written with same contents 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 c519f8e24b03b..3a6f525b952fa 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:: /user/username/projects/myproject/packages/pkg1/index.ts (used version) PolledWatches:: -/a/lib/package.json: +/a/lib/package.json: *new* {"pollingInterval":2000} -/a/package.json: +/a/package.json: *new* {"pollingInterval":2000} -/package.json: +/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/packages/pkg2/build/package.json: +/user/username/projects/myproject/packages/pkg2/build/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/packages/pkg2/tsconfig.json: +/user/username/projects/myproject/packages/pkg2/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/pkg2/const.cts: +/user/username/projects/myproject/packages/pkg2/const.cts: *new* {} -/user/username/projects/myproject/packages/pkg2/index.ts: +/user/username/projects/myproject/packages/pkg2/index.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/package.json: +/user/username/projects/myproject/packages/pkg2/package.json: *new* {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/pkg1/index.ts: +/user/username/projects/myproject/packages/pkg1/index.ts: *new* {} -/user/username/projects/myproject/packages/pkg1/package.json: +/user/username/projects/myproject/packages/pkg1/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: +/user/username/projects/myproject/packages/pkg2: *new* {} -/user/username/projects/myproject/packages/pkg1: +/user/username/projects/myproject/packages/pkg1: *new* {} exitCode:: ExitStatus.undefined @@ -363,38 +363,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/packages/pkg2/const.cts: - {} -/user/username/projects/myproject/packages/pkg2/index.ts: - {} -/user/username/projects/myproject/packages/pkg2/package.json: - {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg1/index.ts: - {} -/user/username/projects/myproject/packages/pkg1/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: - {} -/user/username/projects/myproject/packages/pkg1: - {} - exitCode:: ExitStatus.undefined @@ -468,38 +436,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/packages/pkg2/const.cts: - {} -/user/username/projects/myproject/packages/pkg2/index.ts: - {} -/user/username/projects/myproject/packages/pkg2/package.json: - {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg1/index.ts: - {} -/user/username/projects/myproject/packages/pkg1/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: - {} -/user/username/projects/myproject/packages/pkg1: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/packages/pkg1/build/index.js] file written with same contents @@ -583,38 +519,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/packages/pkg2/const.cts: - {} -/user/username/projects/myproject/packages/pkg2/index.ts: - {} -/user/username/projects/myproject/packages/pkg2/package.json: - {} -/user/username/projects/myproject/packages/pkg1/tsconfig.json: - {} -/user/username/projects/myproject/packages/pkg1/index.ts: - {} -/user/username/projects/myproject/packages/pkg1/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: - {} -/user/username/projects/myproject/packages/pkg1: - {} - exitCode:: ExitStatus.undefined @@ -745,7 +649,11 @@ FsWatches:: {} /user/username/projects/myproject/packages/pkg1/package.json: {} -/user/username/projects/myproject/packages/pkg2/index.cts: +/user/username/projects/myproject/packages/pkg2/index.cts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/packages/pkg2/index.ts: {} FsWatchesRecursive:: 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 ba8151f27e3cb..833db8c607f88 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,27 +108,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/foo/index.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/project1/node_modules/file/package.json: +/user/username/projects/myproject/project1/node_modules/file/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/foo/package.json: +/user/username/projects/myproject/node_modules/@types/foo/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/bar/package.json: +/user/username/projects/myproject/node_modules/@types/bar/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/project1/tsconfig.json: +/user/username/projects/myproject/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/project1/index.ts: +/user/username/projects/myproject/project1/index.ts: *new* {} -/user/username/projects/myproject/project2/tsconfig.json: +/user/username/projects/myproject/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/project2/index.ts: +/user/username/projects/myproject/project2/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/project1/index.js] @@ -333,28 +331,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/project1/index.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/project1/node_modules/file/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/foo/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/bar/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/project1/tsconfig.json: - {} -/user/username/projects/myproject/project1/index.ts: - {} -/user/username/projects/myproject/project2/tsconfig.json: - {} -/user/username/projects/myproject/project2/index.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/project1/index.js] 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 e3e963c2cf05a..85e94aa7c2945 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,18 +58,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (used version) /user/username/projects/myproject/b.ts (used version) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.js: +/user/username/projects/myproject/a.js: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -152,20 +150,6 @@ Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.js: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -205,20 +189,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (computed .d.ts) /user/username/projects/myproject/b.ts (used version) -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.js: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] 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 928bef1f08302..c7a87a746ae7d 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,18 +58,16 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (used version) /user/username/projects/myproject/b.ts (used version) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.js: +/user/username/projects/myproject/a.js: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -104,20 +102,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.js: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -157,19 +141,5 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.js (computed .d.ts) /user/username/projects/myproject/b.ts (used version) -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.js: - {} -/user/username/projects/myproject/b.ts: - {} - -FsWatchesRecursive:: -/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 07e9ce7b9f903..cebf02ecdf5a0 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,20 +73,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -210,22 +208,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -272,22 +254,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -436,22 +402,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -594,22 +544,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -648,22 +582,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -776,22 +694,6 @@ Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] file changed its modified time 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 8305332ec3427..80ac8eb2d146b 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,20 +73,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -127,22 +125,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -189,22 +171,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] @@ -267,22 +233,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -321,22 +271,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -377,22 +311,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/main.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] file changed its modified time @@ -436,22 +354,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] file changed its modified time 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 e74ba17ad3170..2d39dd62bb4bf 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,28 +174,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} 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 9b7c6b07a0ee9..75a14af22ff12 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,28 +191,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -582,30 +580,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] @@ -773,30 +747,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] 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 a7565c6c0c522..d5c8a955b3efd 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,18 +52,16 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/filewitherror.ts: +/user/username/projects/solution/app/filewitherror.ts: *new* {} -/user/username/projects/solution/app/filewithouterror.ts: +/user/username/projects/solution/app/filewithouterror.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/app: +/user/username/projects/solution/app: *new* {} exitCode:: ExitStatus.undefined @@ -207,20 +205,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/solution/app/filewitherror.ts: - {} -/user/username/projects/solution/app/filewithouterror.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/app: - {} - exitCode:: ExitStatus.undefined @@ -258,19 +242,5 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/solution/app/filewitherror.ts: - {} -/user/username/projects/solution/app/filewithouterror.ts: - {} - -FsWatchesRecursive:: -/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 b3fb2ea3e6cac..85b0955c7c235 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,18 +52,16 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/filewitherror.ts: +/user/username/projects/solution/app/filewitherror.ts: *new* {} -/user/username/projects/solution/app/filewithouterror.ts: +/user/username/projects/solution/app/filewithouterror.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/app: +/user/username/projects/solution/app: *new* {} exitCode:: ExitStatus.undefined @@ -207,20 +205,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/solution/app/filewitherror.ts: - {} -/user/username/projects/solution/app/filewithouterror.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/app: - {} - exitCode:: ExitStatus.undefined @@ -242,20 +226,6 @@ Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/solution/app/tsconfig.json: - {} -/user/username/projects/solution/app/filewitherror.ts: - {} -/user/username/projects/solution/app/filewithouterror.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/app: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/solution/app/tsconfig.tsbuildinfo] file changed its modified time 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 a4cd6a85a9680..67cfb1c6d9e23 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,18 +57,16 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/filewitherror.ts: +/user/username/projects/solution/app/filewitherror.ts: *new* {} -/user/username/projects/solution/app/filewithouterror.ts: +/user/username/projects/solution/app/filewithouterror.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/app: +/user/username/projects/solution/app: *new* {} exitCode:: ExitStatus.undefined @@ -108,19 +106,5 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/solution/app/filewitherror.ts: - {} -/user/username/projects/solution/app/filewithouterror.ts: - {} - -FsWatchesRecursive:: -/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 279859620e64f..cf545a5833af7 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,18 +57,16 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/filewitherror.ts: +/user/username/projects/solution/app/filewitherror.ts: *new* {} -/user/username/projects/solution/app/filewithouterror.ts: +/user/username/projects/solution/app/filewithouterror.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/app: +/user/username/projects/solution/app: *new* {} exitCode:: ExitStatus.undefined @@ -106,20 +104,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/solution/app/filewitherror.ts: - {} -/user/username/projects/solution/app/filewithouterror.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/app: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/solution/app/fileWithError.js] 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 0092d5d34c64a..8feeaf890f568 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,28 +174,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -562,30 +560,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/tsconfig.tsbuildinfo] @@ -733,30 +707,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/tsconfig.tsbuildinfo] 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 08f872cc5a8e2..0ced2f553845a 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,28 +173,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -560,30 +558,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/tsconfig.tsbuildinfo] @@ -730,30 +704,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/tsconfig.tsbuildinfo] 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 907e0bbc4dd90..12954909cdc49 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,18 +60,16 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} exitCode:: ExitStatus.undefined @@ -176,20 +174,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} - exitCode:: ExitStatus.undefined @@ -227,8 +211,6 @@ Semantic diagnostics in builder refreshed for:: 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: {} @@ -236,7 +218,7 @@ FsWatches:: {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/core/file3.ts: +/user/username/projects/sample1/core/file3.ts: *new* {} FsWatchesRecursive:: @@ -341,21 +323,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/core/file3.ts: - {} - -FsWatchesRecursive:: -/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 39808667f4b71..3259ecc69147e 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,18 +67,16 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} exitCode:: ExitStatus.undefined @@ -191,20 +189,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} - exitCode:: ExitStatus.undefined @@ -242,8 +226,6 @@ Semantic diagnostics in builder refreshed for:: 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: {} @@ -251,7 +233,7 @@ FsWatches:: {} /user/username/projects/sample1/core/index.ts: {} -/user/username/projects/sample1/core/file3.ts: +/user/username/projects/sample1/core/file3.ts: *new* {} FsWatchesRecursive:: @@ -361,21 +343,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/core/file3.ts: - {} - -FsWatchesRecursive:: -/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 a3ddd3af51f4e..f6d2c0c0893be 100644 --- a/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tsbuildWatch/programUpdates/tsbuildinfo-has-error.js @@ -46,16 +46,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /src/project/main.ts (used version) -PolledWatches:: - FsWatches:: -/src/project/tsconfig.json: +/src/project/tsconfig.json: *new* {} -/src/project/main.ts: +/src/project/main.ts: *new* {} FsWatchesRecursive:: -/src/project: +/src/project: *new* {} 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 8f5d7b5a35406..d10535871e3bd 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,24 +150,22 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} 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 2ee387f5919b3..bae627f4e6393 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,23 +98,23 @@ 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: +/user/username/projects/sample1/logic/tsconfig.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} exitCode:: ExitStatus.undefined @@ -240,6 +240,28 @@ Input:: +PolledWatches *deleted*:: +/user/username/projects/sample1/logic/tsconfig.json: + {"pollingInterval":2000} + +FsWatches:: +/user/username/projects/sample1/core/tsconfig.json: + {} +/user/username/projects/sample1/core/anothermodule.ts: + {} +/user/username/projects/sample1/core/index.ts: + {} +/user/username/projects/sample1/tests/tsconfig.json: + {} +/user/username/projects/sample1/tests/index.ts: + {} +/user/username/projects/sample1/logic/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/user/username/projects/sample1/core: + {} + Output:: sysLog:: /user/username/projects/sample1/logic/tsconfig.json:: Changing watcher to PresentFileSystemEntryWatcher @@ -269,8 +291,6 @@ 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) -PolledWatches:: - FsWatches:: /user/username/projects/sample1/core/tsconfig.json: {} @@ -284,13 +304,13 @@ FsWatches:: {} /user/username/projects/sample1/logic/tsconfig.json: {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} FsWatchesRecursive:: /user/username/projects/sample1/core: {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -434,30 +454,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/tests/index.js] 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 f845341c9ea08..fe04bb5565179 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,22 +79,20 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/library/tsconfig.json: +/user/username/projects/sample1/library/tsconfig.json: *new* {} -/user/username/projects/sample1/library/library.ts: +/user/username/projects/sample1/library/library.ts: *new* {} -/user/username/projects/sample1/app/tsconfig.json: +/user/username/projects/sample1/app/tsconfig.json: *new* {} -/user/username/projects/sample1/app/app.ts: +/user/username/projects/sample1/app/app.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/library: +/user/username/projects/sample1/library: *new* {} -/user/username/projects/sample1/app: +/user/username/projects/sample1/app: *new* {} exitCode:: ExitStatus.undefined @@ -242,24 +240,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/library/tsconfig.json: - {} -/user/username/projects/sample1/library/library.ts: - {} -/user/username/projects/sample1/app/tsconfig.json: - {} -/user/username/projects/sample1/app/app.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/library: - {} -/user/username/projects/sample1/app: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/Library/library.js] @@ -388,24 +368,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/library/tsconfig.json: - {} -/user/username/projects/sample1/library/library.ts: - {} -/user/username/projects/sample1/app/tsconfig.json: - {} -/user/username/projects/sample1/app/app.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/library: - {} -/user/username/projects/sample1/app: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/Library/library.js] 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 e8e25478ec021..ed8557ac3bce6 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,22 +57,20 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -311,24 +309,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -439,24 +419,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js] @@ -615,24 +577,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -726,24 +670,6 @@ Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js] 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 0e0e49fe33779..c57de26a2b8a6 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,28 +148,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -514,8 +512,6 @@ Semantic diagnostics in builder refreshed for:: 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: {} @@ -531,7 +527,7 @@ FsWatches:: {} /user/username/projects/sample1/tests/index.ts: {} -/user/username/projects/sample1/core/newfile.ts: +/user/username/projects/sample1/core/newfile.ts: *new* {} FsWatchesRecursive:: @@ -668,32 +664,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/newfile.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/tsconfig.tsbuildinfo] file changed its modified time @@ -728,32 +698,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/newfile.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/tsconfig.tsbuildinfo] @@ -890,32 +834,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/newfile.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/tsconfig.tsbuildinfo] file changed its modified time 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 c8fbb706f23f5..3afb006688099 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,28 +148,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -517,30 +515,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -678,30 +652,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] file written with same contents @@ -917,30 +867,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -1070,30 +996,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] file written with same contents @@ -1311,30 +1213,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -1480,30 +1358,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] file written with same contents 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 d5795af39a180..f30e5b4f77f97 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,28 +148,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -519,30 +517,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] 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 2ef2684f381f5..1761825bd163a 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,28 +174,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -548,8 +546,6 @@ Semantic diagnostics in builder refreshed for:: 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: {} @@ -565,7 +561,7 @@ FsWatches:: {} /user/username/projects/sample1/tests/index.ts: {} -/user/username/projects/sample1/core/newfile.ts: +/user/username/projects/sample1/core/newfile.ts: *new* {} FsWatchesRecursive:: @@ -707,32 +703,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/newfile.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/tsconfig.tsbuildinfo] file changed its modified time @@ -767,32 +737,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/newfile.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/tsconfig.tsbuildinfo] @@ -934,32 +878,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/newfile.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/tsconfig.tsbuildinfo] file changed its modified time 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 405a05b233961..d99d22a5f7ba8 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,28 +174,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -551,30 +549,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -717,30 +691,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] file written with same contents @@ -956,30 +906,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -1114,30 +1040,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] file written with same contents @@ -1355,30 +1257,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] @@ -1529,30 +1407,6 @@ 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) -PolledWatches:: - -FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/logic/index.js.map] file written with same contents 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 4326a65d5ada7..de6fd4c1d143b 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,28 +174,26 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/core/anothermodule.ts: +/user/username/projects/sample1/core/anothermodule.ts: *new* {} -/user/username/projects/sample1/core/index.ts: +/user/username/projects/sample1/core/index.ts: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -553,30 +551,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/sample1/core/anothermodule.ts: - {} -/user/username/projects/sample1/core/index.ts: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/tests/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/core/index.js] 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 d46e87d194688..7ea4c2b6fbd22 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,28 +92,24 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/other.ts (computed .d.ts during emit) -PolledWatches:: - FsWatches:: -/a/b/project1.tsconfig.json: +/a/b/project1.tsconfig.json: *new* {} -/a/b/alpha.tsconfig.json: +/a/b/alpha.tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/b/project2.tsconfig.json: +/a/b/project2.tsconfig.json: *new* {} -/a/b/bravo.tsconfig.json: +/a/b/bravo.tsconfig.json: *new* {} -/a/b/other.ts: +/a/b/other.ts: *new* {} -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -281,8 +277,6 @@ Output:: -PolledWatches:: - FsWatches:: /a/b/project1.tsconfig.json: {} @@ -295,7 +289,13 @@ FsWatches:: /a/b/tsconfig.json: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/project2.tsconfig.json: + {} +/a/b/bravo.tsconfig.json: + {} +/a/b/other.ts: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tsbuildWatch/programUpdates/works-when-noUnusedParameters-changes-to-false.js b/tests/baselines/reference/tsbuildWatch/programUpdates/works-when-noUnusedParameters-changes-to-false.js index 99287ab952531..365ab61884365 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,16 +48,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/index.ts (used version) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/index.ts: +/user/username/projects/myproject/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -91,18 +89,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/index.js] 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 2fe6211abccc1..27340a98f08ae 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 @@ -123,36 +123,32 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/other2.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/project1.tsconfig.json: +/a/b/project1.tsconfig.json: *new* {} -/a/b/alpha.tsconfig.json: +/a/b/alpha.tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/b/project2.tsconfig.json: +/a/b/project2.tsconfig.json: *new* {} -/a/b/bravo.tsconfig.json: +/a/b/bravo.tsconfig.json: *new* {} -/a/b/other.ts: +/a/b/other.ts: *new* {} -/a/b/project3.tsconfig.json: +/a/b/project3.tsconfig.json: *new* {} -/a/b/extendsconfig1.tsconfig.json: +/a/b/extendsconfig1.tsconfig.json: *new* {} -/a/b/extendsconfig2.tsconfig.json: +/a/b/extendsconfig2.tsconfig.json: *new* {} -/a/b/extendsconfig3.tsconfig.json: +/a/b/extendsconfig3.tsconfig.json: *new* {} -/a/b/other2.ts: +/a/b/other2.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -336,36 +332,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/a/b/project1.tsconfig.json: - {} -/a/b/alpha.tsconfig.json: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/b/project2.tsconfig.json: - {} -/a/b/bravo.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} -/a/b/extendsconfig1.tsconfig.json: - {} -/a/b/extendsconfig2.tsconfig.json: - {} -/a/b/extendsconfig3.tsconfig.json: - {} -/a/b/other2.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -474,36 +440,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/a/b/project1.tsconfig.json: - {} -/a/b/alpha.tsconfig.json: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/b/project2.tsconfig.json: - {} -/a/b/bravo.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} -/a/b/extendsconfig1.tsconfig.json: - {} -/a/b/extendsconfig2.tsconfig.json: - {} -/a/b/extendsconfig3.tsconfig.json: - {} -/a/b/other2.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/other.js] @@ -597,36 +533,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/a/b/project1.tsconfig.json: - {} -/a/b/alpha.tsconfig.json: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/b/project2.tsconfig.json: - {} -/a/b/bravo.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} -/a/b/extendsconfig1.tsconfig.json: - {} -/a/b/extendsconfig2.tsconfig.json: - {} -/a/b/extendsconfig3.tsconfig.json: - {} -/a/b/other2.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/other.js] @@ -729,8 +635,6 @@ Shape signatures in builder refreshed for:: /a/b/other.ts (computed .d.ts) /a/b/other2.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/project1.tsconfig.json: {} @@ -755,8 +659,12 @@ FsWatches:: /a/b/other2.ts: {} +FsWatches *deleted*:: +/a/b/bravo.tsconfig.json: + {} + FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -806,36 +714,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/a/b/project1.tsconfig.json: - {} -/a/b/alpha.tsconfig.json: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/b/project2.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} -/a/b/extendsconfig1.tsconfig.json: - {} -/a/b/extendsconfig2.tsconfig.json: - {} -/a/b/extendsconfig3.tsconfig.json: - {} -/a/b/other2.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -947,36 +825,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/a/b/project1.tsconfig.json: - {} -/a/b/alpha.tsconfig.json: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/b/project2.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} -/a/b/extendsconfig1.tsconfig.json: - {} -/a/b/extendsconfig2.tsconfig.json: - {} -/a/b/extendsconfig3.tsconfig.json: - {} -/a/b/other2.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] file written with same contents @@ -1024,36 +872,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/a/b/project1.tsconfig.json: - {} -/a/b/alpha.tsconfig.json: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/b/project2.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} -/a/b/extendsconfig1.tsconfig.json: - {} -/a/b/extendsconfig2.tsconfig.json: - {} -/a/b/extendsconfig3.tsconfig.json: - {} -/a/b/other2.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/other2.js] file changed its modified time @@ -1092,8 +910,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - FsWatches:: /a/b/project1.tsconfig.json: {} @@ -1116,6 +932,10 @@ FsWatches:: /a/b/other2.ts: {} +FsWatches *deleted*:: +/a/b/extendsconfig3.tsconfig.json: + {} + FsWatchesRecursive:: /a/b: {} @@ -1141,33 +961,5 @@ Output:: -PolledWatches:: - -FsWatches:: -/a/b/project1.tsconfig.json: - {} -/a/b/alpha.tsconfig.json: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/b/project2.tsconfig.json: - {} -/a/b/other.ts: - {} -/a/b/project3.tsconfig.json: - {} -/a/b/extendsconfig1.tsconfig.json: - {} -/a/b/extendsconfig2.tsconfig.json: - {} -/a/b/other2.ts: - {} - -FsWatchesRecursive:: -/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 f3dce35ba0aab..a6316d5e0bc47 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,150 +626,148 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg0/index.ts: +/user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg1/index.ts: +/user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg2/index.ts: +/user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg3/tsconfig.json: +/user/username/projects/myproject/pkg3/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg3/index.ts: +/user/username/projects/myproject/pkg3/index.ts: *new* {} -/user/username/projects/myproject/pkg4/tsconfig.json: +/user/username/projects/myproject/pkg4/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg4/index.ts: +/user/username/projects/myproject/pkg4/index.ts: *new* {} -/user/username/projects/myproject/pkg5/tsconfig.json: +/user/username/projects/myproject/pkg5/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg5/index.ts: +/user/username/projects/myproject/pkg5/index.ts: *new* {} -/user/username/projects/myproject/pkg6/tsconfig.json: +/user/username/projects/myproject/pkg6/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg6/index.ts: +/user/username/projects/myproject/pkg6/index.ts: *new* {} -/user/username/projects/myproject/pkg7/tsconfig.json: +/user/username/projects/myproject/pkg7/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg7/index.ts: +/user/username/projects/myproject/pkg7/index.ts: *new* {} -/user/username/projects/myproject/pkg8/tsconfig.json: +/user/username/projects/myproject/pkg8/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg8/index.ts: +/user/username/projects/myproject/pkg8/index.ts: *new* {} -/user/username/projects/myproject/pkg9/tsconfig.json: +/user/username/projects/myproject/pkg9/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg9/index.ts: +/user/username/projects/myproject/pkg9/index.ts: *new* {} -/user/username/projects/myproject/pkg10/tsconfig.json: +/user/username/projects/myproject/pkg10/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg10/index.ts: +/user/username/projects/myproject/pkg10/index.ts: *new* {} -/user/username/projects/myproject/pkg11/tsconfig.json: +/user/username/projects/myproject/pkg11/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg11/index.ts: +/user/username/projects/myproject/pkg11/index.ts: *new* {} -/user/username/projects/myproject/pkg12/tsconfig.json: +/user/username/projects/myproject/pkg12/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg12/index.ts: +/user/username/projects/myproject/pkg12/index.ts: *new* {} -/user/username/projects/myproject/pkg13/tsconfig.json: +/user/username/projects/myproject/pkg13/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg13/index.ts: +/user/username/projects/myproject/pkg13/index.ts: *new* {} -/user/username/projects/myproject/pkg14/tsconfig.json: +/user/username/projects/myproject/pkg14/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg14/index.ts: +/user/username/projects/myproject/pkg14/index.ts: *new* {} -/user/username/projects/myproject/pkg15/tsconfig.json: +/user/username/projects/myproject/pkg15/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg15/index.ts: +/user/username/projects/myproject/pkg15/index.ts: *new* {} -/user/username/projects/myproject/pkg16/tsconfig.json: +/user/username/projects/myproject/pkg16/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg16/index.ts: +/user/username/projects/myproject/pkg16/index.ts: *new* {} -/user/username/projects/myproject/pkg17/tsconfig.json: +/user/username/projects/myproject/pkg17/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg17/index.ts: +/user/username/projects/myproject/pkg17/index.ts: *new* {} -/user/username/projects/myproject/pkg18/tsconfig.json: +/user/username/projects/myproject/pkg18/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg18/index.ts: +/user/username/projects/myproject/pkg18/index.ts: *new* {} -/user/username/projects/myproject/pkg19/tsconfig.json: +/user/username/projects/myproject/pkg19/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg19/index.ts: +/user/username/projects/myproject/pkg19/index.ts: *new* {} -/user/username/projects/myproject/pkg20/tsconfig.json: +/user/username/projects/myproject/pkg20/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg20/index.ts: +/user/username/projects/myproject/pkg20/index.ts: *new* {} -/user/username/projects/myproject/pkg21/tsconfig.json: +/user/username/projects/myproject/pkg21/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg21/index.ts: +/user/username/projects/myproject/pkg21/index.ts: *new* {} -/user/username/projects/myproject/pkg22/tsconfig.json: +/user/username/projects/myproject/pkg22/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg22/index.ts: +/user/username/projects/myproject/pkg22/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: +/user/username/projects/myproject/pkg0: *new* {} -/user/username/projects/myproject/pkg1: +/user/username/projects/myproject/pkg1: *new* {} -/user/username/projects/myproject/pkg2: +/user/username/projects/myproject/pkg2: *new* {} -/user/username/projects/myproject/pkg3: +/user/username/projects/myproject/pkg3: *new* {} -/user/username/projects/myproject/pkg4: +/user/username/projects/myproject/pkg4: *new* {} -/user/username/projects/myproject/pkg5: +/user/username/projects/myproject/pkg5: *new* {} -/user/username/projects/myproject/pkg6: +/user/username/projects/myproject/pkg6: *new* {} -/user/username/projects/myproject/pkg7: +/user/username/projects/myproject/pkg7: *new* {} -/user/username/projects/myproject/pkg8: +/user/username/projects/myproject/pkg8: *new* {} -/user/username/projects/myproject/pkg9: +/user/username/projects/myproject/pkg9: *new* {} -/user/username/projects/myproject/pkg10: +/user/username/projects/myproject/pkg10: *new* {} -/user/username/projects/myproject/pkg11: +/user/username/projects/myproject/pkg11: *new* {} -/user/username/projects/myproject/pkg12: +/user/username/projects/myproject/pkg12: *new* {} -/user/username/projects/myproject/pkg13: +/user/username/projects/myproject/pkg13: *new* {} -/user/username/projects/myproject/pkg14: +/user/username/projects/myproject/pkg14: *new* {} -/user/username/projects/myproject/pkg15: +/user/username/projects/myproject/pkg15: *new* {} -/user/username/projects/myproject/pkg16: +/user/username/projects/myproject/pkg16: *new* {} -/user/username/projects/myproject/pkg17: +/user/username/projects/myproject/pkg17: *new* {} -/user/username/projects/myproject/pkg18: +/user/username/projects/myproject/pkg18: *new* {} -/user/username/projects/myproject/pkg19: +/user/username/projects/myproject/pkg19: *new* {} -/user/username/projects/myproject/pkg20: +/user/username/projects/myproject/pkg20: *new* {} -/user/username/projects/myproject/pkg21: +/user/username/projects/myproject/pkg21: *new* {} -/user/username/projects/myproject/pkg22: +/user/username/projects/myproject/pkg22: *new* {} exitCode:: ExitStatus.undefined @@ -2298,152 +2296,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -2533,152 +2385,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined @@ -2712,152 +2418,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -3017,153 +2577,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - -exitCode:: ExitStatus.undefined +exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg1/tsconfig.tsbuildinfo] file changed its modified time //// [/user/username/projects/myproject/pkg2/tsconfig.tsbuildinfo] file changed its modified time @@ -3263,152 +2677,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg6/tsconfig.tsbuildinfo] file changed its modified time @@ -3509,152 +2777,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg11/tsconfig.tsbuildinfo] file changed its modified time @@ -3755,159 +2877,13 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: +exitCode:: ExitStatus.undefined -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/pkg16/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg17/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg18/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg19/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg20/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg16/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg17/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg18/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg19/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg20/tsconfig.tsbuildinfo] file changed its modified time Change:: build pkg21,pkg22,pkg23 @@ -3952,152 +2928,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg21/tsconfig.tsbuildinfo] file changed its modified time @@ -4109,152 +2939,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined @@ -4288,152 +2972,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -4595,153 +3133,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - -exitCode:: ExitStatus.undefined +exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg1/tsconfig.tsbuildinfo] file changed its modified time //// [/user/username/projects/myproject/pkg2/tsconfig.tsbuildinfo] file changed its modified time @@ -4841,152 +3233,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg6/tsconfig.tsbuildinfo] file changed its modified time @@ -5065,152 +3311,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -5377,153 +3477,7 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - -exitCode:: ExitStatus.undefined +exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg11/tsconfig.tsbuildinfo] file changed its modified time //// [/user/username/projects/myproject/pkg12/tsconfig.tsbuildinfo] file changed its modified time @@ -5561,152 +3515,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -5871,152 +3679,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg1/tsconfig.tsbuildinfo] file changed its modified time @@ -6117,159 +3779,13 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: +exitCode:: ExitStatus.undefined -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/pkg6/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg7/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg8/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg9/tsconfig.tsbuildinfo] file changed its modified time -//// [/user/username/projects/myproject/pkg10/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg6/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg7/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg8/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg9/tsconfig.tsbuildinfo] file changed its modified time +//// [/user/username/projects/myproject/pkg10/tsconfig.tsbuildinfo] file changed its modified time Change:: build pkg11,pkg12,pkg13,pkg14,pkg15 @@ -6363,152 +3879,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg11/tsconfig.tsbuildinfo] file changed its modified time @@ -6609,152 +3979,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg16/tsconfig.tsbuildinfo] file changed its modified time @@ -6806,152 +4030,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/user/username/projects/myproject/pkg22: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg21/tsconfig.tsbuildinfo] file changed its modified time @@ -6963,151 +4041,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/index.ts: - {} -/user/username/projects/myproject/pkg8/tsconfig.json: - {} -/user/username/projects/myproject/pkg8/index.ts: - {} -/user/username/projects/myproject/pkg9/tsconfig.json: - {} -/user/username/projects/myproject/pkg9/index.ts: - {} -/user/username/projects/myproject/pkg10/tsconfig.json: - {} -/user/username/projects/myproject/pkg10/index.ts: - {} -/user/username/projects/myproject/pkg11/tsconfig.json: - {} -/user/username/projects/myproject/pkg11/index.ts: - {} -/user/username/projects/myproject/pkg12/tsconfig.json: - {} -/user/username/projects/myproject/pkg12/index.ts: - {} -/user/username/projects/myproject/pkg13/tsconfig.json: - {} -/user/username/projects/myproject/pkg13/index.ts: - {} -/user/username/projects/myproject/pkg14/tsconfig.json: - {} -/user/username/projects/myproject/pkg14/index.ts: - {} -/user/username/projects/myproject/pkg15/tsconfig.json: - {} -/user/username/projects/myproject/pkg15/index.ts: - {} -/user/username/projects/myproject/pkg16/tsconfig.json: - {} -/user/username/projects/myproject/pkg16/index.ts: - {} -/user/username/projects/myproject/pkg17/tsconfig.json: - {} -/user/username/projects/myproject/pkg17/index.ts: - {} -/user/username/projects/myproject/pkg18/tsconfig.json: - {} -/user/username/projects/myproject/pkg18/index.ts: - {} -/user/username/projects/myproject/pkg19/tsconfig.json: - {} -/user/username/projects/myproject/pkg19/index.ts: - {} -/user/username/projects/myproject/pkg20/tsconfig.json: - {} -/user/username/projects/myproject/pkg20/index.ts: - {} -/user/username/projects/myproject/pkg21/tsconfig.json: - {} -/user/username/projects/myproject/pkg21/index.ts: - {} -/user/username/projects/myproject/pkg22/tsconfig.json: - {} -/user/username/projects/myproject/pkg22/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} -/user/username/projects/myproject/pkg8: - {} -/user/username/projects/myproject/pkg9: - {} -/user/username/projects/myproject/pkg10: - {} -/user/username/projects/myproject/pkg11: - {} -/user/username/projects/myproject/pkg12: - {} -/user/username/projects/myproject/pkg13: - {} -/user/username/projects/myproject/pkg14: - {} -/user/username/projects/myproject/pkg15: - {} -/user/username/projects/myproject/pkg16: - {} -/user/username/projects/myproject/pkg17: - {} -/user/username/projects/myproject/pkg18: - {} -/user/username/projects/myproject/pkg19: - {} -/user/username/projects/myproject/pkg20: - {} -/user/username/projects/myproject/pkg21: - {} -/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 4d4973b315d57..0728c0871cc92 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,30 +106,28 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg0/index.ts: +/user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg1/index.ts: +/user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg2/index.ts: +/user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: +/user/username/projects/myproject/pkg0: *new* {} -/user/username/projects/myproject/pkg1: +/user/username/projects/myproject/pkg1: *new* {} -/user/username/projects/myproject/pkg2: +/user/username/projects/myproject/pkg2: *new* {} exitCode:: ExitStatus.undefined @@ -358,32 +356,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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] @@ -453,32 +425,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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 @@ -512,32 +458,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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] @@ -648,32 +568,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg1/tsconfig.tsbuildinfo] file changed its modified time @@ -685,31 +579,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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 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 a8d1aa6a19250..b5cd0932d29fc 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,42 +158,40 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg0/index.ts: +/user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg1/index.ts: +/user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg2/index.ts: +/user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg3/tsconfig.json: +/user/username/projects/myproject/pkg3/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg3/index.ts: +/user/username/projects/myproject/pkg3/index.ts: *new* {} -/user/username/projects/myproject/pkg4/tsconfig.json: +/user/username/projects/myproject/pkg4/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg4/index.ts: +/user/username/projects/myproject/pkg4/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: +/user/username/projects/myproject/pkg0: *new* {} -/user/username/projects/myproject/pkg1: +/user/username/projects/myproject/pkg1: *new* {} -/user/username/projects/myproject/pkg2: +/user/username/projects/myproject/pkg2: *new* {} -/user/username/projects/myproject/pkg3: +/user/username/projects/myproject/pkg3: *new* {} -/user/username/projects/myproject/pkg4: +/user/username/projects/myproject/pkg4: *new* {} exitCode:: ExitStatus.undefined @@ -552,44 +550,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/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: - {} -/user/username/projects/myproject/pkg4: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -661,44 +621,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/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: - {} -/user/username/projects/myproject/pkg4: - {} - exitCode:: ExitStatus.undefined @@ -732,44 +654,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/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: - {} -/user/username/projects/myproject/pkg4: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -914,44 +798,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/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: - {} -/user/username/projects/myproject/pkg4: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg1/tsconfig.tsbuildinfo] file changed its modified time @@ -965,43 +811,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/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: - {} -/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 04cd44e96ad5b..11d83eb448d33 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,60 +236,58 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg0/index.ts: +/user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg1/index.ts: +/user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg2/index.ts: +/user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg3/tsconfig.json: +/user/username/projects/myproject/pkg3/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg3/index.ts: +/user/username/projects/myproject/pkg3/index.ts: *new* {} -/user/username/projects/myproject/pkg4/tsconfig.json: +/user/username/projects/myproject/pkg4/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg4/index.ts: +/user/username/projects/myproject/pkg4/index.ts: *new* {} -/user/username/projects/myproject/pkg5/tsconfig.json: +/user/username/projects/myproject/pkg5/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg5/index.ts: +/user/username/projects/myproject/pkg5/index.ts: *new* {} -/user/username/projects/myproject/pkg6/tsconfig.json: +/user/username/projects/myproject/pkg6/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg6/index.ts: +/user/username/projects/myproject/pkg6/index.ts: *new* {} -/user/username/projects/myproject/pkg7/tsconfig.json: +/user/username/projects/myproject/pkg7/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg7/index.ts: +/user/username/projects/myproject/pkg7/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: +/user/username/projects/myproject/pkg0: *new* {} -/user/username/projects/myproject/pkg1: +/user/username/projects/myproject/pkg1: *new* {} -/user/username/projects/myproject/pkg2: +/user/username/projects/myproject/pkg2: *new* {} -/user/username/projects/myproject/pkg3: +/user/username/projects/myproject/pkg3: *new* {} -/user/username/projects/myproject/pkg4: +/user/username/projects/myproject/pkg4: *new* {} -/user/username/projects/myproject/pkg5: +/user/username/projects/myproject/pkg5: *new* {} -/user/username/projects/myproject/pkg6: +/user/username/projects/myproject/pkg6: *new* {} -/user/username/projects/myproject/pkg7: +/user/username/projects/myproject/pkg7: *new* {} exitCode:: ExitStatus.undefined @@ -843,62 +841,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -973,62 +915,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined @@ -1062,62 +948,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -1277,62 +1107,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg1/tsconfig.tsbuildinfo] file changed its modified time @@ -1384,62 +1158,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg6/tsconfig.tsbuildinfo] file changed its modified time @@ -1451,62 +1169,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined @@ -1540,62 +1202,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -1757,62 +1363,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg1/tsconfig.tsbuildinfo] file changed its modified time @@ -1871,62 +1421,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg0/index.js] @@ -2039,62 +1533,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/user/username/projects/myproject/pkg7: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/pkg6/tsconfig.tsbuildinfo] file changed its modified time @@ -2106,61 +1544,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: - {} -/user/username/projects/myproject/pkg0/index.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/pkg4/tsconfig.json: - {} -/user/username/projects/myproject/pkg4/index.ts: - {} -/user/username/projects/myproject/pkg5/tsconfig.json: - {} -/user/username/projects/myproject/pkg5/index.ts: - {} -/user/username/projects/myproject/pkg6/tsconfig.json: - {} -/user/username/projects/myproject/pkg6/index.ts: - {} -/user/username/projects/myproject/pkg7/tsconfig.json: - {} -/user/username/projects/myproject/pkg7/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: - {} -/user/username/projects/myproject/pkg4: - {} -/user/username/projects/myproject/pkg5: - {} -/user/username/projects/myproject/pkg6: - {} -/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 095199befbcc9..aa16324fb9e65 100644 --- a/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js +++ b/tests/baselines/reference/tsbuildWatch/publicApi/with-custom-transformers.js @@ -85,24 +85,22 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /user/username/projects/myproject/webpack/index.ts (used version) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/shared/tsconfig.json: +/user/username/projects/myproject/shared/tsconfig.json: *new* {} -/user/username/projects/myproject/shared/index.ts: +/user/username/projects/myproject/shared/index.ts: *new* {} -/user/username/projects/myproject/webpack/tsconfig.json: +/user/username/projects/myproject/webpack/tsconfig.json: *new* {} -/user/username/projects/myproject/webpack/index.ts: +/user/username/projects/myproject/webpack/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/shared: +/user/username/projects/myproject/shared: *new* {} -/user/username/projects/myproject/webpack: +/user/username/projects/myproject/webpack: *new* {} exitCode:: ExitStatus.undefined @@ -331,26 +329,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/shared/tsconfig.json: - {} -/user/username/projects/myproject/shared/index.ts: - {} -/user/username/projects/myproject/webpack/tsconfig.json: - {} -/user/username/projects/myproject/webpack/index.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/shared: - {} -/user/username/projects/myproject/webpack: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/shared/index.js] diff --git a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js index 3e521da1d95bd..ba6a378995bca 100644 --- a/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js +++ b/tests/baselines/reference/tsbuildWatch/reexport/Reports-errors-correctly.js @@ -126,27 +126,27 @@ 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: +/user/username/projects/reexport/src/pure/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/reexport/src/pure/tsconfig.json: +/user/username/projects/reexport/src/pure/tsconfig.json: *new* {} -/user/username/projects/reexport/src/pure/index.ts: +/user/username/projects/reexport/src/pure/index.ts: *new* {} -/user/username/projects/reexport/src/pure/session.ts: +/user/username/projects/reexport/src/pure/session.ts: *new* {} -/user/username/projects/reexport/src/main/tsconfig.json: +/user/username/projects/reexport/src/main/tsconfig.json: *new* {} -/user/username/projects/reexport/src/main/index.ts: +/user/username/projects/reexport/src/main/index.ts: *new* {} -/user/username/projects/reexport/src/tsconfig.json: +/user/username/projects/reexport/src/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/reexport/src/pure: +/user/username/projects/reexport/src/pure: *new* {} -/user/username/projects/reexport/src/main: +/user/username/projects/reexport/src/main: *new* {} exitCode:: ExitStatus.undefined @@ -343,30 +343,6 @@ 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) -PolledWatches:: -/user/username/projects/reexport/src/pure/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/reexport/src/pure/tsconfig.json: - {} -/user/username/projects/reexport/src/pure/index.ts: - {} -/user/username/projects/reexport/src/pure/session.ts: - {} -/user/username/projects/reexport/src/main/tsconfig.json: - {} -/user/username/projects/reexport/src/main/index.ts: - {} -/user/username/projects/reexport/src/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/reexport/src/pure: - {} -/user/username/projects/reexport/src/main: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/reexport/out/pure/session.js] file written with same contents @@ -518,30 +494,6 @@ 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) -PolledWatches:: -/user/username/projects/reexport/src/pure/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/reexport/src/pure/tsconfig.json: - {} -/user/username/projects/reexport/src/pure/index.ts: - {} -/user/username/projects/reexport/src/pure/session.ts: - {} -/user/username/projects/reexport/src/main/tsconfig.json: - {} -/user/username/projects/reexport/src/main/index.ts: - {} -/user/username/projects/reexport/src/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/reexport/src/pure: - {} -/user/username/projects/reexport/src/main: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/reexport/out/pure/session.js] file written with same contents 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 0b711dabd827f..12456b24f675b 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,38 +147,36 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/pkg0/tsconfig.json: +/user/username/projects/myproject/pkg0/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg0/index.ts: +/user/username/projects/myproject/pkg0/index.ts: *new* {} -/user/username/projects/myproject/typings/xterm.d.ts: +/user/username/projects/myproject/typings/xterm.d.ts: *new* {} -/user/username/projects/myproject/pkg1/tsconfig.json: +/user/username/projects/myproject/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg1/index.ts: +/user/username/projects/myproject/pkg1/index.ts: *new* {} -/user/username/projects/myproject/pkg2/tsconfig.json: +/user/username/projects/myproject/pkg2/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg2/index.ts: +/user/username/projects/myproject/pkg2/index.ts: *new* {} -/user/username/projects/myproject/pkg3/tsconfig.json: +/user/username/projects/myproject/pkg3/tsconfig.json: *new* {} -/user/username/projects/myproject/pkg3/index.ts: +/user/username/projects/myproject/pkg3/index.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/pkg0: +/user/username/projects/myproject/pkg0: *new* {} -/user/username/projects/myproject/pkg1: +/user/username/projects/myproject/pkg1: *new* {} -/user/username/projects/myproject/pkg2: +/user/username/projects/myproject/pkg2: *new* {} -/user/username/projects/myproject/pkg3: +/user/username/projects/myproject/pkg3: *new* {} exitCode:: ExitStatus.undefined @@ -307,40 +305,6 @@ Semantic diagnostics in builder refreshed for:: 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 @@ -363,8 +327,6 @@ Output:: -PolledWatches:: - FsWatches:: /user/username/projects/myproject/pkg0/tsconfig.json: {} @@ -383,6 +345,12 @@ FsWatches:: /user/username/projects/myproject/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/pkg3/tsconfig.json: + {} +/user/username/projects/myproject/pkg3/index.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/pkg0: {} @@ -391,6 +359,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/pkg2: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/pkg3: + {} + exitCode:: ExitStatus.undefined @@ -469,34 +441,6 @@ Semantic diagnostics in builder refreshed for:: 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 @@ -523,13 +467,33 @@ Output:: -PolledWatches:: - FsWatches:: /user/username/projects/myproject/tsconfig.json: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/user/username/projects/myproject/pkg0/tsconfig.json: + {} +/user/username/projects/myproject/pkg0/index.ts: + {} +/user/username/projects/myproject/typings/xterm.d.ts: + {} +/user/username/projects/myproject/pkg1/tsconfig.json: + {} +/user/username/projects/myproject/pkg1/index.ts: + {} +/user/username/projects/myproject/pkg2/tsconfig.json: + {} +/user/username/projects/myproject/pkg2/index.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/pkg0: + {} +/user/username/projects/myproject/pkg1: + {} +/user/username/projects/myproject/pkg2: + {} exitCode:: ExitStatus.undefined @@ -543,13 +507,5 @@ 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/tsc/cancellationToken/when-emitting-buildInfo.js b/tests/baselines/reference/tsc/cancellationToken/when-emitting-buildInfo.js index fb7b61b9be269..c3134dcd54eec 100644 --- a/tests/baselines/reference/tsc/cancellationToken/when-emitting-buildInfo.js +++ b/tests/baselines/reference/tsc/cancellationToken/when-emitting-buildInfo.js @@ -62,12 +62,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -275,12 +269,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -418,12 +406,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -588,12 +570,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] file written with same contents diff --git a/tests/baselines/reference/tsc/cancellationToken/when-using-state.js b/tests/baselines/reference/tsc/cancellationToken/when-using-state.js index 1c6952e916eb3..0456169bde7b4 100644 --- a/tests/baselines/reference/tsc/cancellationToken/when-using-state.js +++ b/tests/baselines/reference/tsc/cancellationToken/when-using-state.js @@ -62,12 +62,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -275,12 +269,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -418,12 +406,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -588,12 +570,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] file written with same contents 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 e4d085374b056..2727e8763f822 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,12 +94,6 @@ Program files:: /user/username/projects/myproject/pkg3/src/keys.ts /user/username/projects/myproject/pkg3/src/index.ts -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped //// [/user/username/projects/myproject/pkg3/dist/keys.js] 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 d239eb6a278b3..46619ce2fc063 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,12 +94,6 @@ Program files:: /user/username/projects/myproject/pkg3/src/keys.ts /user/username/projects/myproject/pkg3/src/index.ts -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped //// [/user/username/projects/myproject/pkg3/dist/keys.js] 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 da6015197894b..f6f9ca2a85420 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,12 +157,6 @@ Program files:: /user/username/projects/myProject/plugin-two/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/user/username/projects/myproject/plugin-one/action.js] 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 35775f1a5dab4..c1a09b936762a 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 @@ -165,12 +165,6 @@ Program files:: /user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/user/username/projects/myproject/plugin-one/index.js] 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 3b599c0d394ae..9b2740d8b0ea1 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 @@ -165,12 +165,6 @@ Program files:: /user/username/projects/myproject/plugin-one/node_modules/typescript-fsa/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/user/username/projects/myproject/plugin-one/index.js] 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 8c264f124a2d5..2693b63aed4ee 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,12 +157,6 @@ Program files:: /user/username/projects/myproject/plugin-two/index.d.ts /user/username/projects/myproject/plugin-one/index.ts -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/user/username/projects/myproject/plugin-one/action.js] 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 0c489ceedba2c..3bb7e22a4aaee 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,18 +43,16 @@ Shape signatures in builder refreshed for:: /f.ts (used version) /a/lib/lib.d.ts (used version) -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/f.ts: +/f.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} exitCode:: ExitStatus.undefined @@ -90,20 +88,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/f.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - exitCode:: ExitStatus.undefined //// [/f.js] 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 b00b0890299fa..9c5a6d19820ef 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,18 +42,16 @@ Shape signatures in builder refreshed for:: /f.ts (used version) /a/lib/lib.d.ts (used version) -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/f.ts: +/f.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} exitCode:: ExitStatus.undefined @@ -89,20 +87,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/f.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - exitCode:: ExitStatus.undefined //// [/f.js] diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js index a05dcb42c9161..958d187110687 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---diagnostics.js @@ -44,16 +44,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -PolledWatches:: - FsWatches:: -/f.ts: +/f.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] @@ -94,16 +90,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/f.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js index 9b9116e56e3e4..8f9fac4f7066a 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---extendedDiagnostics.js @@ -46,16 +46,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -PolledWatches:: - FsWatches:: -/f.ts: +/f.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] @@ -96,16 +92,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/f.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] diff --git a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js index 186bc73425dc6..4aca121ae8c6b 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/with---preserveWatchOutput.js @@ -39,16 +39,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -PolledWatches:: - FsWatches:: -/f.ts: +/f.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] @@ -82,16 +78,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/f.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] 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 fde12f08a4113..1ca8628811835 100644 --- a/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/consoleClearing/without---diagnostics-or---extendedDiagnostics.js @@ -40,16 +40,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /f.ts (used version) -PolledWatches:: - FsWatches:: -/f.ts: +/f.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] @@ -84,16 +80,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /f.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/f.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/f.js] 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 9f20e692641a6..514aca453ff9e 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,20 +52,16 @@ Shape signatures in builder refreshed for:: /user/someone/projects/myproject/file2.ts (used version) /user/someone/projects/myproject/file3.ts (used version) -PolledWatches:: - FsWatches:: -/user/someone/projects/myproject/file3.ts: +/user/someone/projects/myproject/file3.ts: *new* {} -/user/someone/projects/myproject/file2.ts: +/user/someone/projects/myproject/file2.ts: *new* {} -/user/someone/projects/myproject/file1.ts: +/user/someone/projects/myproject/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/someone/projects/myproject/file1.js] @@ -115,20 +111,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/someone/projects/myproject/file3.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/user/someone/projects/myproject/file3.ts: - {} -/user/someone/projects/myproject/file2.ts: - {} -/user/someone/projects/myproject/file1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/someone/projects/myproject/file3.js] 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 d21d02c531b6e..2723b7fac1c3f 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,19 +44,19 @@ Shape signatures in builder refreshed for:: /home/username/project/app/file.ts (used version) PolledWatches:: -/home/username/project/node_modules/@types: +/home/username/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/home/username/project/tsconfig.json: +/home/username/project/tsconfig.json: *new* {} -/home/username/project/app/file.ts: +/home/username/project/app/file.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/home/username/project/app: +/home/username/project/app: *new* {} exitCode:: ExitStatus.undefined @@ -96,22 +96,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /home/username/project/app/file.ts (computed .d.ts) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/home/username/project/app/file.js] 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 b3d18f8905ba0..e0aa952b4bcad 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,16 +41,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/app.ts (used version) -PolledWatches:: - FsWatches:: -/a/app.ts: +/a/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/app.js] @@ -90,16 +86,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/app.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/a/app.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/app.js] 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 ca0aaababcbe9..085e3a17a61d9 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,16 +41,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/app.ts (used version) -PolledWatches:: - FsWatches:: -/a/app.ts: +/a/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/app.js] @@ -90,16 +86,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/app.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/a/app.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/app.js] 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 c9b2167fa5f34..a7ec7691bd845 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,23 +56,23 @@ Shape signatures in builder refreshed for:: /a/b/f3.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/b/f3.ts: +/a/b/f3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -135,26 +135,6 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (computed .d.ts) /a/b/f3.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/f1.ts: - {} -/a/b/f2.ts: - {} -/a/b/f3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/f1.js] @@ -202,26 +182,6 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) /a/b/f2.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/f1.ts: - {} -/a/b/f2.ts: - {} -/a/b/f3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/f1.js] 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 00d0c73452318..6f3b884516598 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 @@ -68,27 +68,27 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -162,30 +162,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (used version) /a/b/file1consumer1.ts (used version) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] 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 d2f2de8cabbc4..94488d3e62c40 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,27 +56,27 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -160,30 +160,6 @@ 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: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/out.js] 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 95c2486fef1d5..923383b0536ab 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,27 +68,27 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -178,6 +178,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/file1consumer2.ts: + {} + 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 74787ee40d9dc..f5da15f4cec97 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,27 +68,27 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -187,7 +187,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/file1consumer3.ts: +/a/b/file1consumer3.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-be-up-to-date-with-the-reference-map-changes.js index f425568d600f7..1f80de4eb54f4 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,27 +68,27 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -163,30 +163,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/file1Consumer1.js] @@ -236,30 +212,6 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) /a/b/file1consumer2.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] @@ -305,30 +257,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/file1Consumer1.js] @@ -390,30 +318,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] @@ -463,30 +367,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] 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 99d254e8c98de..efaf9681450b3 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,27 +68,27 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -162,30 +162,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] @@ -237,30 +213,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] 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 c15c4d84bd61a..bba8a49df6ee5 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,21 +59,19 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] @@ -124,22 +122,6 @@ Shape signatures in builder refreshed for:: /a/b/modulefile1.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] @@ -182,22 +164,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] 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 00de3b56bae53..030fb762d88cb 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,21 +55,21 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (used version) PolledWatches:: -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/referencefile1.ts: +/a/b/referencefile1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -127,24 +127,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (computed .d.ts) -PolledWatches:: -/a/b/modulefile2.ts: - {"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: - {} - exitCode:: ExitStatus.undefined //// [/a/b/referenceFile1.js] @@ -164,6 +146,26 @@ Input:: export var Foo4 = 10; +PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/b/modulefile2.ts: + {"pollingInterval":500} + +FsWatches:: +/a/b/tsconfig.json: + {} +/a/b/referencefile1.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive:: +/a/b: + {} + Output:: >> Screen clear [12:00:28 AM] File change detected. Starting incremental compilation... @@ -209,7 +211,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-removed-code-file.js b/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/should-detect-removed-code-file.js index f01a35766958b..5632f0ef803fd 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,21 +56,21 @@ Shape signatures in builder refreshed for:: /a/b/referencefile1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/referencefile1.ts: +/a/b/referencefile1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -132,7 +132,7 @@ Shape signatures in builder refreshed for:: PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {"pollingInterval":500} FsWatches:: @@ -143,6 +143,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/modulefile1.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 3473d481624c0..afb8cc28b666d 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,27 +68,27 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -167,30 +167,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/modulefile2.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] file written with same contents 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 bd07ca962de5c..492613be3a864 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,29 +74,29 @@ Shape signatures in builder refreshed for:: /a/b/modulefile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/file1consumer1consumer1.ts: +/a/b/file1consumer1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -174,32 +174,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) /a/b/file1consumer1consumer1.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/file1Consumer1.js] @@ -248,32 +222,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer2.ts (computed .d.ts) /a/b/file1consumer1.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] @@ -330,32 +278,6 @@ Shape signatures in builder refreshed for:: /a/b/file1consumer1.ts (computed .d.ts) /a/b/file1consumer1consumer1.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile1.js] 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 4bc99f626f2b3..6027a024a7014 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,21 +52,21 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1.ts: +/a/b/file1.ts: *new* {} -/a/b/file2.ts: +/a/b/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -120,24 +120,6 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) /a/b/file2.ts (computed .d.ts) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/a/b/file2.js] file written with same contents 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 fc1916285b419..a9f3bee7414a0 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) PolledWatches:: -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/a/b.ts: +/a/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -110,24 +110,6 @@ Shape signatures in builder refreshed for:: /a/a.ts (computed .d.ts) /a/b.ts (computed .d.ts) -PolledWatches:: -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/a/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a: - {} - exitCode:: ExitStatus.undefined //// [/a/a.js] @@ -168,24 +150,6 @@ Shape signatures in builder refreshed for:: /a/a.ts (computed .d.ts) /a/b.ts (computed .d.ts) -PolledWatches:: -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/a/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a: - {} - exitCode:: ExitStatus.undefined //// [/a/a.js] 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 cb82a18b232dc..82d0431d3dac3 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 @@ -49,21 +49,21 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/a/b.ts: +/a/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -106,24 +106,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/a/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a: - {} - exitCode:: ExitStatus.undefined //// [/a/out.js] @@ -164,24 +146,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/a/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a: - {} - exitCode:: ExitStatus.undefined //// [/a/out.js] 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 9bb2c4a4112be..499e90f20ae52 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,21 +44,21 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/a/b.ts: +/a/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -96,24 +96,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/a/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a: - {} - exitCode:: ExitStatus.undefined //// [/a/out.js] @@ -149,24 +131,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/a/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a: - {} - exitCode:: ExitStatus.undefined //// [/a/out.js] 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 a8b71755add0e..12685852ec20d 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,25 +57,23 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/b/project/node_modules/@types: +/a/b/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: +/a/b/project/tsconfig.json: *new* {} -/a/b/output/anotherdependency/file1.d.ts: +/a/b/output/anotherdependency/file1.d.ts: *new* {} -/a/b/dependencies/file2.d.ts: +/a/b/dependencies/file2.d.ts: *new* {} -/a/b/project/src/main.ts: +/a/b/project/src/main.ts: *new* {} -/a/b/project/src/main2.ts: +/a/b/project/src/main2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/output/common.js] 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 c223f8024acf8..d6b8e38f1fdfb 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,25 +67,23 @@ Shape signatures in builder refreshed for:: /a/b/project/src/main2.ts (used version) PolledWatches:: -/a/b/project/node_modules/@types: +/a/b/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: +/a/b/project/tsconfig.json: *new* {} -/a/b/output/anotherdependency/file1.d.ts: +/a/b/output/anotherdependency/file1.d.ts: *new* {} -/a/b/dependencies/file2.d.ts: +/a/b/dependencies/file2.d.ts: *new* {} -/a/b/project/src/main.ts: +/a/b/project/src/main.ts: *new* {} -/a/b/project/src/main2.ts: +/a/b/project/src/main2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/output/main.js] 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 aec1a8a667a73..871692f882000 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /a/rootfolder/project/scripts/typescript.ts (used version) PolledWatches:: -/a/rootfolder/project/node_modules/@types: +/a/rootfolder/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/rootfolder/project/tsconfig.json: +/a/rootfolder/project/tsconfig.json: *new* {} -/a/rootfolder/project/scripts/javascript.js: +/a/rootfolder/project/scripts/javascript.js: *new* {} -/a/rootfolder/project/scripts/typescript.ts: +/a/rootfolder/project/scripts/typescript.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/rootfolder/project/scripts: +/a/rootfolder/project/scripts: *new* {} exitCode:: ExitStatus.undefined @@ -110,24 +110,6 @@ Shape signatures in builder refreshed for:: /a/rootfolder/project/scripts/typescript.ts (computed .d.ts) /a/rootfolder/project/scripts/javascript.js (computed .d.ts) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/a/rootFolder/project/Static/scripts/Javascript.js] file written with same contents 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 b67db08f2bfc6..e56f5213dbd01 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,25 +66,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -219,28 +219,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -365,28 +343,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -511,28 +467,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] 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 481945c57ccac..74e935ab8199d 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,25 +66,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -133,28 +133,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -193,28 +171,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -253,27 +209,5 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - 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 1d355b564cfd1..1248b59a59958 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,23 +66,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -251,26 +251,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -436,26 +416,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -620,26 +580,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 6924ffc71965d..5387d43bc2b2b 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,23 +66,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -165,26 +165,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -243,26 +223,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -320,26 +280,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 acfb2dac59fde..0499ec725a0f8 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,27 +103,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -379,30 +379,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -587,30 +563,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -792,30 +744,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 799c0a445fcf2..c11c872d3b263 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,27 +103,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -216,30 +216,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -289,30 +265,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -359,30 +311,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 f107404989117..0af0ca55c89a6 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,29 +89,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -387,30 +385,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -631,30 +605,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -871,30 +821,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 c88e0e2e91cd1..9f8041753b31f 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,29 +89,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -263,30 +261,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -339,30 +313,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -411,30 +361,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 645a230b20264..9fa6e75afdda9 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,31 +98,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -428,32 +426,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -695,32 +667,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -957,32 +903,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 b7ab62bc7f17e..963d737a46e75 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,31 +98,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -289,32 +287,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -369,32 +341,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -444,32 +390,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 748b243ac3c5a..b113f070b48dd 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,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -197,26 +197,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -253,26 +233,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -410,26 +370,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -537,26 +477,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -591,26 +511,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -706,25 +606,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 588b1b1aa1329..5d49f88c1ea4a 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/with-noEmitOnError.js @@ -75,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -160,26 +140,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] @@ -238,26 +198,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -268,26 +208,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -322,26 +242,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/src/main.js] @@ -358,25 +258,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 ea3225132d7f8..fe0c2cae78a59 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,25 +66,25 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -225,28 +225,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -373,28 +351,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -521,28 +477,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] 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 45ba3bdbf482b..baef98b57ba43 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,25 +66,25 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -137,28 +137,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -197,28 +175,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -257,27 +213,5 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.d.ts (used version) /user/username/projects/myproject/b.d.ts (used version) -PolledWatches:: -/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: - {} - 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 776c4db576eef..e45440b8ff811 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,23 +66,23 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -271,26 +271,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -446,26 +426,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -621,26 +581,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 44baf0a6a83dc..df61bcb75709f 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,23 +66,23 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -175,26 +175,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -254,26 +234,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -333,26 +293,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 be56315c7689e..82c07aadb04e3 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,27 +103,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -437,30 +437,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -716,30 +692,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -995,30 +947,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 df49e8fe0b7d5..f6af4bc34d6ab 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,27 +103,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -256,30 +256,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -354,30 +330,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -452,30 +404,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 0113df719813a..891e891d555e4 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,29 +89,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -426,30 +424,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -645,30 +619,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -864,30 +814,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 b36c365bf4f63..cc16cf305e8ce 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,29 +89,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -280,30 +278,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -353,30 +327,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -426,30 +376,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 70fcaf9be8910..b49750cddd48f 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,31 +98,29 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -478,32 +476,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -719,32 +691,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -960,32 +906,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 ad506e1215a61..41efa480e0f1f 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,31 +98,29 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -313,32 +311,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -389,32 +361,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -465,32 +411,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib1/tools/toolsinterface.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 84a303ce487b0..47ed147188887 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,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -198,26 +198,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -254,26 +234,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -434,26 +394,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -570,26 +510,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -624,26 +544,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -749,25 +649,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 35fae84c9d425..e3b13b838c476 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/with-noEmitOnError.js @@ -75,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -160,26 +140,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] @@ -252,26 +212,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -282,26 +222,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -336,26 +256,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/src/main.js] @@ -373,25 +273,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 7612b274ae68b..37ab4635b359b 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,25 +66,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -223,28 +223,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -380,28 +358,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -530,28 +486,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] 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 2b753ab001b4d..9074b18bcd1a6 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,25 +66,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -140,28 +140,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined @@ -202,28 +180,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined @@ -269,27 +225,5 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - 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 a0b2dda769731..31dd1f3d9f8d5 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,23 +66,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -248,26 +248,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -427,26 +407,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -597,26 +557,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 39e2fc2165d65..cd2a03004a77a 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,23 +66,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -165,26 +165,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -240,26 +220,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -319,26 +279,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 061d4874ba5ad..920af0f22352b 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,27 +103,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -376,30 +376,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -601,30 +577,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -849,30 +801,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 bfa4dd5103f00..bec0ac6d5f107 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,27 +103,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -216,30 +216,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -309,30 +285,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/c.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -385,30 +337,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 cb392683e1778..7af657fa0cff7 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,29 +89,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -384,30 +382,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -627,30 +601,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -836,30 +786,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 4bff8bf5a4b90..266322254a53b 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,29 +89,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -263,30 +261,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -341,30 +315,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -421,30 +371,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 fc1b5316f2889..b569217fdca6d 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,31 +98,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -425,32 +423,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -693,32 +665,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -922,32 +868,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 d4df4f1fd7b36..67cc13cfc0f2b 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,31 +98,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -289,32 +287,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -373,32 +345,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -458,32 +404,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 a4e19e5b44e20..1e7006c7127d0 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,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -196,26 +196,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -252,26 +232,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -408,26 +368,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -534,26 +474,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -588,26 +508,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -702,25 +602,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 f56fb8878e52d..a04630a23c88b 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/with-noEmitOnError.js @@ -75,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -160,26 +140,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] @@ -238,26 +198,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -268,26 +208,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -322,26 +242,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/src/main.js] @@ -358,25 +258,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 89491c8154301..68ed1d177ff72 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,25 +66,25 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -231,28 +231,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -393,28 +371,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -548,28 +504,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents 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 c28fea94ec620..ac8df1ebd275d 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,25 +66,25 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -144,28 +144,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -207,28 +185,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -275,28 +231,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents 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 e2ac445a61bf7..0a65d9b0914c6 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,23 +66,23 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -277,26 +277,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -466,26 +446,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -648,26 +608,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 1267e6e632698..11a86427e92e2 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,23 +66,23 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -182,26 +182,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -264,26 +244,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -351,26 +311,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 f95f48eb0fc46..1b80d4d544de2 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,27 +103,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -424,30 +424,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -663,30 +639,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -931,30 +883,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 f0129f80b60ef..38eed1357dbca 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,27 +103,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -244,30 +244,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -348,30 +324,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -436,30 +388,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 d1863a84429ce..09b3c63b1e9a2 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,29 +89,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -439,30 +437,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -692,30 +666,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -928,30 +878,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 8813bfad7684e..b58acde9b2cdb 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,29 +89,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -294,30 +292,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -379,30 +353,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -470,30 +420,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 ba7164b670dff..b81ed8ec0ecac 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,31 +98,29 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -493,32 +491,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -771,32 +743,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -1032,32 +978,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 30f4b65d9578b..e962ea31ffbe0 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,31 +98,29 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -329,32 +327,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -420,32 +392,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -517,32 +463,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 4887302d95a8b..80938deb0ff55 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,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -197,26 +197,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -253,26 +233,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -432,26 +392,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -567,26 +507,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -621,26 +541,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -745,25 +645,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 847630c587e9c..4db98794b5f30 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/with-noEmitOnError.js @@ -75,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -160,26 +140,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] @@ -252,26 +212,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -282,26 +222,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -336,26 +256,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/src/main.js] @@ -373,25 +273,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 023c6d37de06c..44174083a508e 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,25 +66,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -223,28 +223,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -380,28 +358,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -530,28 +486,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] 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 173e1e31c7022..8563dfa7f92f3 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,25 +66,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -140,28 +140,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined @@ -202,28 +180,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - exitCode:: ExitStatus.undefined @@ -269,27 +225,5 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) /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: - {} -/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: - {} - 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 b07879fe859b4..9946245dc8e58 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,23 +66,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -248,26 +248,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -420,26 +400,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -585,26 +545,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 a4a3e2a976008..71bba7f3687c0 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,23 +66,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -165,26 +165,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -238,26 +218,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -316,26 +276,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 32c389a1ab1ff..c3ae4ceb73adc 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,27 +103,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -376,30 +376,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -586,30 +562,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -825,30 +777,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 58582850cb705..52d263d258e91 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,27 +103,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/e.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -216,30 +216,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -307,30 +283,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -382,30 +334,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/d.ts (used version) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 d3f8fefa6f1b4..0ae849c2a2277 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,29 +89,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -384,30 +382,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -605,30 +579,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -809,30 +759,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 12ec2e823e420..36ae371236b0f 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,29 +89,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -263,30 +261,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -336,30 +310,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -415,30 +365,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 c8881c7b635c4..ff38e247a17dd 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,31 +98,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -425,32 +423,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -666,32 +638,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -890,32 +836,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 3314590c29361..514502b502da6 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,31 +98,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -289,32 +287,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -367,32 +339,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -451,32 +397,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib2/public.ts (used version) /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: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 3067fb8fe73d9..c8b285baf6a37 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,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -196,26 +196,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -252,26 +232,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -408,26 +368,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -534,26 +474,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -588,26 +508,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -702,25 +602,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 5a680a1ce8d90..390a76b8f58d8 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/with-noEmitOnError.js @@ -75,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -160,26 +140,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] @@ -238,26 +198,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -268,26 +208,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -322,26 +242,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/src/main.js] @@ -358,25 +258,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 534e4539544ad..4b6293a5a1516 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,25 +66,25 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -231,28 +231,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -393,28 +371,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -548,28 +504,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents 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 ec2d49bb81b1c..d5ded7cb28e09 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,25 +66,25 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/user/username/projects/myproject/c.d.ts: +/user/username/projects/myproject/c.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -144,28 +144,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -207,28 +185,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents @@ -275,28 +231,6 @@ 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) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.d.ts] file written with same contents 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 bf11e89819146..111552672863f 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,23 +66,23 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -277,26 +277,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -465,26 +445,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -646,26 +606,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 ac6fbb80e1f17..72518498140e3 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,23 +66,23 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -182,26 +182,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -263,26 +243,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] @@ -349,26 +309,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/c.js] 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 4b261e6016188..afdfa08a7d3a7 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,27 +103,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -426,30 +426,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -667,30 +643,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -937,30 +889,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 1488c18e78815..b2e16116c6a68 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,27 +103,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/c.ts: +/user/username/projects/myproject/c.ts: *new* {} -/user/username/projects/myproject/d.ts: +/user/username/projects/myproject/d.ts: *new* {} -/user/username/projects/myproject/e.ts: +/user/username/projects/myproject/e.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -246,30 +246,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -352,30 +328,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -442,30 +394,6 @@ 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) -PolledWatches:: -/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: - {} -/user/username/projects/myproject/c.ts: - {} -/user/username/projects/myproject/d.ts: - {} -/user/username/projects/myproject/e.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 c0507c1146548..136372d01e53c 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,29 +89,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -439,30 +437,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -691,30 +665,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -926,30 +876,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 b1c04b3bcf096..e27a453f9aca5 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,29 +89,27 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -294,30 +292,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -378,30 +352,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -468,30 +418,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 0f36ee55eceac..249482340f1aa 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,31 +98,29 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -493,32 +491,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -770,32 +742,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -1030,32 +976,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 505bd5824f117..68b65eb593611 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,31 +98,29 @@ 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: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/app.ts: +/user/username/projects/myproject/app.ts: *new* {} -/user/username/projects/myproject/lib2/public.ts: +/user/username/projects/myproject/lib2/public.ts: *new* {} -/user/username/projects/myproject/lib2/data.ts: +/user/username/projects/myproject/lib2/data.ts: *new* {} -/user/username/projects/myproject/lib1/public.ts: +/user/username/projects/myproject/lib1/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/public.ts: +/user/username/projects/myproject/lib1/tools/public.ts: *new* {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: +/user/username/projects/myproject/lib1/tools/toolsinterface.ts: *new* {} -/user/username/projects/myproject/lib2/data2.ts: +/user/username/projects/myproject/lib2/data2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] @@ -329,32 +327,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -419,32 +391,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents @@ -515,32 +461,6 @@ 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) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/app.ts: - {} -/user/username/projects/myproject/lib2/public.ts: - {} -/user/username/projects/myproject/lib2/data.ts: - {} -/user/username/projects/myproject/lib1/public.ts: - {} -/user/username/projects/myproject/lib1/tools/public.ts: - {} -/user/username/projects/myproject/lib1/tools/toolsinterface.ts: - {} -/user/username/projects/myproject/lib2/data2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib1/tools/toolsinterface.js] file written with same contents 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 47a60c7d24c2f..3ae6e8d0c8b5a 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,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -197,26 +197,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -253,26 +233,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -432,26 +392,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -567,26 +507,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -621,26 +541,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/tsconfig.tsbuildinfo] @@ -745,25 +645,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 8371358c4a3a9..0298816882cc3 100644 --- a/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js +++ b/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/with-noEmitOnError.js @@ -75,23 +75,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/noemitonerror/src/other.ts (used version) PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: +/user/username/projects/noemitonerror/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: +/user/username/projects/noemitonerror/tsconfig.json: *new* {} -/user/username/projects/noemitonerror/shared/types/db.ts: +/user/username/projects/noemitonerror/shared/types/db.ts: *new* {} -/user/username/projects/noemitonerror/src/main.ts: +/user/username/projects/noemitonerror/src/main.ts: *new* {} -/user/username/projects/noemitonerror/src/other.ts: +/user/username/projects/noemitonerror/src/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/noemitonerror: +/user/username/projects/noemitonerror: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -160,26 +140,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/shared/types/db.js] @@ -252,26 +212,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -282,26 +222,6 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined @@ -336,26 +256,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/noemitonerror: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/noEmitOnError/dev-build/src/main.js] @@ -373,25 +273,5 @@ Input:: Output:: -PolledWatches:: -/user/username/projects/noemitonerror/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/noemitonerror/tsconfig.json: - {} -/user/username/projects/noemitonerror/shared/types/db.ts: - {} -/user/username/projects/noemitonerror/src/main.ts: - {} -/user/username/projects/noemitonerror/src/other.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 557eb2696e510..0c987fff970ba 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/jsxImportSource-option-changed.js @@ -78,23 +78,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.tsx (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts: +/user/username/projects/myproject/node_modules/react/jsx-runtime/index.d.ts: *new* {} -/user/username/projects/myproject/index.tsx: +/user/username/projects/myproject/index.tsx: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/node_modules/react/package.json: +/user/username/projects/myproject/node_modules/react/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js index c888e2b10d375..af204599c8578 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/package-json-is-looked-up-for-file.js @@ -80,29 +80,29 @@ Shape signatures in builder refreshed for:: /users/name/projects/lib-boilerplate/test/basic.spec.ts (used version) PolledWatches:: -/users/name/projects/lib-boilerplate/src/package.json: +/users/name/projects/lib-boilerplate/src/package.json: *new* {"pollingInterval":2000} -/users/name/projects/lib-boilerplate/test/package.json: +/users/name/projects/lib-boilerplate/test/package.json: *new* {"pollingInterval":2000} -/users/name/projects/lib-boilerplate/node_modules/@types: +/users/name/projects/lib-boilerplate/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/name/projects/lib-boilerplate/tsconfig.json: +/users/name/projects/lib-boilerplate/tsconfig.json: *new* {} -/users/name/projects/lib-boilerplate/src/index.ts: +/users/name/projects/lib-boilerplate/src/index.ts: *new* {} -/users/name/projects/lib-boilerplate/test/basic.spec.ts: +/users/name/projects/lib-boilerplate/test/basic.spec.ts: *new* {} -/a/lib/lib.es2021.full.d.ts: +/a/lib/lib.es2021.full.d.ts: *new* {} -/users/name/projects/lib-boilerplate/package.json: +/users/name/projects/lib-boilerplate/package.json: *new* {} FsWatchesRecursive:: -/users/name/projects/lib-boilerplate/test: +/users/name/projects/lib-boilerplate/test: *new* {} -/users/name/projects/lib-boilerplate: +/users/name/projects/lib-boilerplate: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js index bce0742487757..a7acd44ce2d7e 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/self-name-package-reference.js @@ -68,21 +68,21 @@ Shape signatures in builder refreshed for:: /users/name/projects/web/index.ts (computed .d.ts during emit) PolledWatches:: -/users/name/projects/web/node_modules/@types: +/users/name/projects/web/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/name/projects/web/tsconfig.json: +/users/name/projects/web/tsconfig.json: *new* {} -/users/name/projects/web/index.ts: +/users/name/projects/web/index.ts: *new* {} -/a/lib/lib.esnext.full.d.ts: +/a/lib/lib.esnext.full.d.ts: *new* {} -/users/name/projects/web/package.json: +/users/name/projects/web/package.json: *new* {} FsWatchesRecursive:: -/users/name/projects/web: +/users/name/projects/web: *new* {} 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 2453206bbb473..2c295b7b89acd 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,21 +66,21 @@ c:/project/a.ts (used version) c:/project/b.ts (used version) PolledWatches:: -c:/project/node_modules/@types: +c:/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/project/tsconfig.json: +c:/project/tsconfig.json: *new* {} -c:/project/a.ts: +c:/project/a.ts: *new* {} -c:/project/b.ts: +c:/project/b.ts: *new* {} -c:/a/lib/lib.d.ts: +c:/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -c:/project: +c:/project: *new* {} exitCode:: ExitStatus.undefined @@ -146,24 +146,6 @@ Shape signatures in builder refreshed for:: c:/project/a.ts (computed .d.ts) c:/project/b.ts (computed .d.ts) -PolledWatches:: -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: - {} - exitCode:: ExitStatus.undefined //// [c:/project/a.js] 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 d4ebb79f75095..d6432b13493ad 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,21 +66,21 @@ c:/project/a.ts (used version) c:/project/b.ts (used version) PolledWatches:: -c:/project/node_modules/@types: +c:/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -c:/project/tsconfig.json: +c:/project/tsconfig.json: *new* {} -c:/project/a.ts: +c:/project/a.ts: *new* {} -c:/project/b.ts: +c:/project/b.ts: *new* {} -c:/a/lib/lib.d.ts: +c:/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -c:/project: +c:/project: *new* {} exitCode:: ExitStatus.undefined @@ -146,24 +146,6 @@ Shape signatures in builder refreshed for:: c:/project/a.ts (computed .d.ts) c:/project/b.ts (computed .d.ts) -PolledWatches:: -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: - {} - exitCode:: ExitStatus.undefined //// [C:/project/a.js] 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 a762bc949811c..55442af1d6378 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,23 +63,23 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: +/user/username/projects/myproject/xy/a.ts: *new* {} -/user/username/projects/myproject/link/a.ts: +/user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -172,26 +172,6 @@ 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: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/xy/a.ts: - {} -/user/username/projects/myproject/link/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/out.js] 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 0578618de2be2..fe5a0819db702 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,23 +72,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/xy.ts: +/user/username/projects/myproject/xy.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/link.ts: +/user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -165,26 +165,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/xy.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/link.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/XY.js] 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 014227dbd01b6..9550cbd083318 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/another.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/another.ts: +/user/username/projects/myproject/another.ts: *new* {} -/user/username/projects/myproject/logger.ts: +/user/username/projects/myproject/logger.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -126,24 +126,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/another.ts (computed .d.ts) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/another.js] 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 b8530f0376462..5274c9b9e2637 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,23 +63,23 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: +/user/username/projects/myproject/xy/a.ts: *new* {} -/user/username/projects/myproject/link/a.ts: +/user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -172,26 +172,6 @@ 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: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/xy/a.ts: - {} -/user/username/projects/myproject/link/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/out.js] 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 41be57e4172df..3bd324ab4918d 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,23 +72,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/xy.ts: +/user/username/projects/myproject/xy.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/link.ts: +/user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -165,26 +165,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/xy.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/link.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/XY.js] 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 0ce5f7440b94b..f2039029db34f 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,25 +67,25 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/yx: +/user/username/projects/myproject/yx: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/link/a.ts: +/user/username/projects/myproject/link/a.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: +/user/username/projects/myproject/xy/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -182,28 +182,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: -/user/username/projects/myproject/yx: - {"pollingInterval":500} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/out.js] 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 92d6511c37a8d..0ed1a140b29a3 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,27 +76,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/yx: +/user/username/projects/myproject/yx: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/xy.ts: +/user/username/projects/myproject/xy.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/link.ts: +/user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -175,30 +175,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/yx: - {"pollingInterval":500} -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/XY.js] 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 b712bc34dad99..922ea8e03faa6 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,23 +71,23 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: +/user/username/projects/myproject/xy/a.ts: *new* {} -/user/username/projects/myproject/link/a.ts: +/user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -188,26 +188,6 @@ 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: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/xy/a.ts: - {} -/user/username/projects/myproject/link/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/out.js] 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 6b1aa90a6eeea..cbd16af794efb 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,23 +80,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/xy.ts: +/user/username/projects/myproject/xy.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/link.ts: +/user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -181,26 +181,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/xy.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/link.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/XY.js] 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 fff959809bcb0..5d83c040a5221 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,23 +71,23 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/xy/a.ts: +/user/username/projects/myproject/xy/a.ts: *new* {} -/user/username/projects/myproject/link/a.ts: +/user/username/projects/myproject/link/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -188,26 +188,6 @@ 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: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/xy/a.ts: - {} -/user/username/projects/myproject/link/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/out.js] 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 e0a670b3cf013..b91309ec84a7d 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,23 +80,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/xy.ts: +/user/username/projects/myproject/xy.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/user/username/projects/myproject/link.ts: +/user/username/projects/myproject/link.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -181,26 +181,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/xy.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/xy.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/user/username/projects/myproject/link.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/XY.js] 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 347c9e9ce0d17..911cf6d1752aa 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,23 +94,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/moduleb.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/modulea.ts: +/user/username/projects/myproject/modulea.ts: *new* {} -/user/username/projects/myproject/modulec.ts: +/user/username/projects/myproject/modulec.ts: *new* {} -/user/username/projects/myproject/moduleb.ts: +/user/username/projects/myproject/moduleb.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -202,26 +202,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/modulea.ts: - {} -/user/username/projects/myproject/modulec.ts: - {} -/user/username/projects/myproject/moduleb.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/moduleA.js] file written with same contents 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 417513ed53a77..15755c0826ed8 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/another.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/another.ts: +/user/username/projects/myproject/another.ts: *new* {} -/user/username/projects/myproject/logger.ts: +/user/username/projects/myproject/logger.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -122,23 +122,5 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js index 20deca3dbd2fb..14eecd8f3ff8d 100644 --- a/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js +++ b/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/with-nodeNext-resolution.js @@ -113,35 +113,35 @@ Shape signatures in builder refreshed for:: /users/name/projects/web/src/bin.ts (used version) PolledWatches:: -/users/name/projects/web/src/package.json: +/users/name/projects/web/src/package.json: *new* {"pollingInterval":2000} -/users/name/projects/web/package.json: +/users/name/projects/web/package.json: *new* {"pollingInterval":2000} -/users/name/projects/package.json: +/users/name/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: -/users/name/projects/web/tsconfig.json: +/users/name/projects/web/tsconfig.json: *new* {} -/users/name/projects/web/src/bin.ts: +/users/name/projects/web/src/bin.ts: *new* {} -/users/name/projects/web/node_modules/@types/yargs/index.d.ts: +/users/name/projects/web/node_modules/@types/yargs/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/users/name/projects/web: +/users/name/projects/web: *new* {} -/users/name/projects/web/node_modules/@types/yargs/package.json: +/users/name/projects/web/node_modules/@types/yargs/package.json: *new* {} FsWatchesRecursive:: -/users/name/projects/web/src: +/users/name/projects/web/src: *new* {} -/users/name/projects/web/node_modules: +/users/name/projects/web/node_modules: *new* {} -/users/name/projects/web/node_modules/@types: +/users/name/projects/web/node_modules/@types: *new* {} -/users/name/projects/web: +/users/name/projects/web: *new* {} exitCode:: ExitStatus.undefined 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 8f8755e6f22e6..10263bb76a068 100644 --- a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-incremental.js @@ -52,12 +52,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/src/index.js] @@ -189,12 +183,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/src/index.js] file written with same contents 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 75c403946cc46..5865bd0c58aba 100644 --- a/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/editing-module-augmentation-watch.js @@ -58,27 +58,27 @@ 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: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/src/index.ts: +/users/username/projects/project/src/index.ts: *new* {} -/users/username/projects/project/node_modules/classnames/index.d.ts: +/users/username/projects/project/node_modules/classnames/index.d.ts: *new* {} -/users/username/projects/project/src/types/classnames.d.ts: +/users/username/projects/project/src/types/classnames.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project/src: +/users/username/projects/project/src: *new* {} -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -184,6 +184,30 @@ Input:: export {}; declare module "classnames" { interface Result {} } +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/src/index.ts: + {} +/users/username/projects/project/node_modules/classnames/index.d.ts: + {} +/users/username/projects/project/src/types/classnames.d.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project/src: + {} +/users/username/projects/project/node_modules: + {} +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:44 AM] Starting compilation in watch mode... @@ -215,27 +239,27 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/src/index.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/src/index.ts: +/users/username/projects/project/src/index.ts: *new* {} -/users/username/projects/project/node_modules/classnames/index.d.ts: +/users/username/projects/project/node_modules/classnames/index.d.ts: *new* {} -/users/username/projects/project/src/types/classnames.d.ts: +/users/username/projects/project/src/types/classnames.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project/src: +/users/username/projects/project/src: *new* {} -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 8821502421ad6..12213a8f809fc 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,12 +49,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/index.js] @@ -160,12 +154,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/index.js] file written with same contents 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 f3dce87d97b47..26298f3363535 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,25 +55,25 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/users/username/projects/project/node_modules/tslib/index.d.ts: +/users/username/projects/project/node_modules/tslib/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/users/username/projects/project/node_modules/tslib/package.json: +/users/username/projects/project/node_modules/tslib/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -93,6 +93,28 @@ Input:: //// [/users/username/projects/project/node_modules/tslib/index.d.ts] deleted //// [/users/username/projects/project/node_modules/tslib/package.json] deleted +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.tsx: + {} +/users/username/projects/project/node_modules/tslib/index.d.ts: + {} +/a/lib/lib.d.ts: + {} +/users/username/projects/project/node_modules/tslib/package.json: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project/node_modules: + {} +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:35 AM] Starting compilation in watch mode... @@ -122,21 +144,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 86f35c0514675..b7e6fa65789ba 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,12 +71,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/a.ts (used version) /users/username/projects/project/index.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/c.d.ts] @@ -264,12 +258,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/c.ts (used version) /users/username/projects/project/b.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/c.d.ts] file written with same contents 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 2bfb0b7e6527e..274ad1ad40b25 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,25 +77,25 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/a.ts: +/users/username/projects/project/a.ts: *new* {} -/users/username/projects/project/b.ts: +/users/username/projects/project/b.ts: *new* {} -/users/username/projects/project/c.ts: +/users/username/projects/project/c.ts: *new* {} -/users/username/projects/project/index.ts: +/users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -260,6 +260,28 @@ export interface A { +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/a.ts: + {} +/users/username/projects/project/b.ts: + {} +/users/username/projects/project/c.ts: + {} +/users/username/projects/project/index.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:44 AM] Starting compilation in watch mode... @@ -291,25 +313,25 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/b.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/a.ts: +/users/username/projects/project/a.ts: *new* {} -/users/username/projects/project/b.ts: +/users/username/projects/project/b.ts: *new* {} -/users/username/projects/project/c.ts: +/users/username/projects/project/c.ts: *new* {} -/users/username/projects/project/index.ts: +/users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 f4b2a652d36f1..0873ea5e580a7 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,12 +48,6 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /users/username/projects/project/index.tsx (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/index.js] @@ -165,12 +159,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/index.js] file written with same contents 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 95455f3978467..c32826a53617d 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,21 +51,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -160,6 +160,24 @@ export const Fragment: unique symbol; {"name":"react","version":"0.0.1"} +PolledWatches *deleted*:: +/users/username/projects/project/node_modules: + {"pollingInterval":500} +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.tsx: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:39 AM] Starting compilation in watch mode... @@ -185,25 +203,25 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: +/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/users/username/projects/project/node_modules/react/package.json: +/users/username/projects/project/node_modules/react/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 5bcc07b2ee245..23c7c6e1175d9 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,12 +60,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/index.js] @@ -174,12 +168,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/index.js] file written with same contents 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 bd3f9bb76e47f..49eced4ccfe6b 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,25 +66,25 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: +/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/users/username/projects/project/node_modules/react/package.json: +/users/username/projects/project/node_modules/react/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -171,6 +171,28 @@ Input:: //// [/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts] deleted //// [/users/username/projects/project/node_modules/react/package.json] deleted +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.tsx: + {} +/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: + {} +/a/lib/lib.d.ts: + {} +/users/username/projects/project/node_modules/react/package.json: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project/node_modules: + {} +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:41 AM] Starting compilation in watch mode... @@ -198,21 +220,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 c9866050b41d4..8d22626dfb10c 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-incremental.js @@ -83,12 +83,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/index.js] @@ -209,12 +203,6 @@ 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) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/index.js] 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 8a2d2cc8ea2e0..5bf26bd2ded80 100644 --- a/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/jsxImportSource-option-changed-watch.js @@ -89,25 +89,25 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: +/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/users/username/projects/project/node_modules/react/package.json: +/users/username/projects/project/node_modules/react/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -195,6 +195,28 @@ Input:: {"compilerOptions":{"module":"commonjs","jsx":"react-jsx","incremental":true,"jsxImportSource":"preact"}} +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/index.tsx: + {} +/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts: + {} +/a/lib/lib.d.ts: + {} +/users/username/projects/project/node_modules/react/package.json: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project/node_modules: + {} +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:50 AM] Starting compilation in watch mode... @@ -233,25 +255,25 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.tsx (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.tsx: +/users/username/projects/project/index.tsx: *new* {} -/users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts: +/users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/users/username/projects/project/node_modules/preact/package.json: +/users/username/projects/project/node_modules/preact/package.json: *new* {} FsWatchesRecursive:: -/users/username/projects/project/node_modules: +/users/username/projects/project/node_modules: *new* {} -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 0efb433dc099e..13b7b8929cd54 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,12 +52,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/file1.js] @@ -178,12 +172,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/file1.js] 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 6527d19034ac3..76f347899d12c 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,21 +55,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -167,6 +167,24 @@ Input:: export const z = 10; +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:36 AM] Starting compilation in watch mode... @@ -195,21 +213,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 5129f3bca8684..9a2921c5bcbb1 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,12 +44,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/file1.js] @@ -150,12 +144,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/file2.js] 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 bc371315a8057..aedd8875e82c1 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -150,6 +150,24 @@ Input:: export const z = 10; +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:36 AM] Starting compilation in watch mode... @@ -173,21 +191,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 b2c79b2e607d9..306f48e9e811a 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,12 +38,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/out.js] 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 292326730a0b1..754afeb88047c 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,21 +44,21 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 644b42c8accba..4bd33aba28b68 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,12 +52,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/file1.js] @@ -178,12 +172,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) /users/username/projects/project/file2.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/file1.js] 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 d90f7f08b9cc6..6bdbbb0244e1b 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,21 +55,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -164,6 +164,24 @@ Input:: const z = 10; +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:36 AM] Starting compilation in watch mode... @@ -195,21 +213,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 57f9db367ff35..554924af2e31c 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,12 +44,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/file1.js] @@ -150,12 +144,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) /users/username/projects/project/file1.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/file1.js] file written with same contents 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 906d32f318bac..bd93be50c1da4 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -147,6 +147,24 @@ Input:: const z = 10; +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:36 AM] Starting compilation in watch mode... @@ -173,21 +191,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined 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 27bebd595ca49..c2bad5d64716b 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,12 +44,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (used version) /users/username/projects/project/file2.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/file1.js] @@ -150,12 +144,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (computed .d.ts) /users/username/projects/project/file1.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/file1.js] file written with same contents 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 b47f0749d84ba..9fc1560038e0e 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file2.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -147,6 +147,24 @@ Input:: const z = 10; +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/users/username/projects/project/tsconfig.json: + {} +/users/username/projects/project/file1.ts: + {} +/users/username/projects/project/file2.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:36 AM] Starting compilation in watch mode... @@ -173,21 +191,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/file1.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} 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 f518ac1aea8e3..14766944e49ff 100644 --- a/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js +++ b/tests/baselines/reference/tscWatch/incremental/tsbuildinfo-has-error.js @@ -47,19 +47,19 @@ Shape signatures in builder refreshed for:: /src/project/main.ts (used version) PolledWatches:: -/src/project/node_modules/@types: +/src/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/src/project/tsconfig.json: +/src/project/tsconfig.json: *new* {} -/src/project/main.ts: +/src/project/main.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/src/project: +/src/project: *new* {} exitCode:: ExitStatus.undefined 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 f8c0e9d37e209..c40ab16fcbfe8 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,12 +46,6 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/globals.d.ts (used version) /users/username/projects/project/index.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/index.js] @@ -151,12 +145,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated //// [/users/username/projects/project/index.js] file written with same contents 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 0190d4368dffb..5eedc3b31e98b 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,21 +52,21 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (used version) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/globals.d.ts: +/users/username/projects/project/globals.d.ts: *new* {} -/users/username/projects/project/index.ts: +/users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined @@ -143,6 +143,24 @@ Change:: Input:: //// [/users/username/projects/project/globals.d.ts] deleted +PolledWatches *deleted*:: +/users/username/projects/project/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/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 *deleted*:: +/users/username/projects/project: + {} + Output:: >> Screen clear [12:00:32 AM] Starting compilation in watch mode... @@ -171,19 +189,19 @@ Shape signatures in builder refreshed for:: /users/username/projects/project/index.ts (computed .d.ts) PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/index.ts: +/users/username/projects/project/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js b/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js index 4cc72df7149c1..c183fdf0dc737 100644 --- a/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js +++ b/tests/baselines/reference/tscWatch/incremental/with---out-incremental.js @@ -38,12 +38,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.Success //// [/users/username/projects/project/out.js] diff --git a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js index 15c8ccf0d86c8..4c0215a0c994f 100644 --- a/tests/baselines/reference/tscWatch/incremental/with---out-watch.js +++ b/tests/baselines/reference/tscWatch/incremental/with---out-watch.js @@ -44,21 +44,21 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/users/username/projects/project/node_modules/@types: +/users/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/project/tsconfig.json: +/users/username/projects/project/tsconfig.json: *new* {} -/users/username/projects/project/file1.ts: +/users/username/projects/project/file1.ts: *new* {} -/users/username/projects/project/file2.ts: +/users/username/projects/project/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/project: +/users/username/projects/project: *new* {} 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 28a6ab7fd28d4..60847a779f2bd 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/diagnostics-from-cache.js @@ -73,23 +73,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/index.ts: +/user/username/projects/myproject/index.ts: *new* {} -/user/username/projects/myproject/index2.ts: +/user/username/projects/myproject/index2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -170,26 +170,6 @@ No cached semantic diagnostics in the builder:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/index2.ts (computed .d.ts) -PolledWatches:: -/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/index2.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/dist/index2.js] file written with same contents diff --git a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js index 7bc2102e1680d..c1c835e5c3c40 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js @@ -158,35 +158,35 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/package.json: *new* {"pollingInterval":2000} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/index.ts: +/user/username/projects/myproject/index.ts: *new* {} -/user/username/projects/myproject/node_modules/pkg/import.d.ts: +/user/username/projects/myproject/node_modules/pkg/import.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/node_modules/pkg/package.json: +/user/username/projects/myproject/node_modules/pkg/package.json: *new* {} -/user/username/projects/myproject/node_modules/pkg1/package.json: +/user/username/projects/myproject/node_modules/pkg1/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -294,38 +294,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /user/username/projects/myproject/index.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/package.json: - {"pollingInterval":2000} -/user/username/projects/package.json: - {"pollingInterval":2000} -/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/index.ts: - {} -/user/username/projects/myproject/node_modules/pkg/import.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject: - {} -/user/username/projects/myproject/node_modules/pkg/package.json: - {} -/user/username/projects/myproject/node_modules/pkg1/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 3d8b1ff5b569d..a53db1c7fecd2 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 @@ -96,27 +96,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (used version) PolledWatches:: -/user/username/projects/myproject/src/package.json: +/user/username/projects/myproject/src/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/src/filea.ts: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/a/lib/lib.es2016.full.d.ts: +/a/lib/lib.es2016.full.d.ts: *new* {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} exitCode:: ExitStatus.undefined @@ -206,7 +206,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/fileb.mjs: +/user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} FsWatches:: @@ -310,6 +310,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/src/fileb.mjs: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/src/tsconfig.json: {} @@ -420,9 +424,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/fileb.mjs: +/user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: @@ -516,6 +520,10 @@ PolledWatches:: /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/package.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/src/tsconfig.json: {} @@ -605,7 +613,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: 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 688ac828dc9f7..8d290d9e8238e 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 @@ -103,29 +103,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/filea.ts (used version) PolledWatches:: -/user/username/projects/myproject/src/fileb.mjs: +/user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/package.json: +/user/username/projects/myproject/src/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {} -/user/username/projects/myproject/src/filea.ts: +/user/username/projects/myproject/src/filea.ts: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/a/lib/lib.es2016.full.d.ts: +/a/lib/lib.es2016.full.d.ts: *new* {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} exitCode:: ExitStatus.undefined @@ -213,6 +213,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/src/fileb.mjs: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/src/tsconfig.json: {} @@ -316,7 +320,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/fileb.mjs: +/user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} FsWatches:: @@ -415,7 +419,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/src/fileb.mjs: {"pollingInterval":500} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: @@ -513,6 +517,12 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/src/fileb.mjs: + {"pollingInterval":500} +/user/username/projects/package.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/src/tsconfig.json: {} @@ -623,9 +633,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/fileb.mjs: +/user/username/projects/myproject/src/fileb.mjs: *new* {"pollingInterval":500} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: diff --git a/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js b/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js index 827b58d73b992..245f0d8ac1391 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js @@ -159,41 +159,41 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/node_modules/@types/pkg2/index.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/package.json: *new* {"pollingInterval":2000} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/pkg2/package.json: +/user/username/projects/myproject/node_modules/@types/pkg2/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/package.json: +/user/username/projects/myproject/node_modules/@types/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/package.json: +/user/username/projects/myproject/node_modules/package.json: *new* {"pollingInterval":2000} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/index.ts: +/user/username/projects/myproject/index.ts: *new* {} -/user/username/projects/myproject/node_modules/pkg/import.d.ts: +/user/username/projects/myproject/node_modules/pkg/import.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/pkg2/index.d.ts: +/user/username/projects/myproject/node_modules/@types/pkg2/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/node_modules/pkg/package.json: +/user/username/projects/myproject/node_modules/pkg/package.json: *new* {} -/user/username/projects/myproject/node_modules/pkg1/package.json: +/user/username/projects/myproject/node_modules/pkg1/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -316,44 +316,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/package.json: - {"pollingInterval":2000} -/user/username/projects/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/pkg2/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/index.ts: - {} -/user/username/projects/myproject/node_modules/pkg/import.d.ts: - {} -/user/username/projects/myproject/node_modules/@types/pkg2/index.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/node_modules/pkg/package.json: - {} -/user/username/projects/myproject/node_modules/pkg1/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: - {} -/user/username/projects/myproject/node_modules/@types: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] 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 b050db421d4aa..468d227228192 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 @@ -96,37 +96,37 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/pkg1/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/pkg1/node_modules: +/user/username/projects/myproject/packages/pkg1/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/pkg1/node_modules/@types: +/user/username/projects/myproject/packages/pkg1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/pkg1/tsconfig.json: +/user/username/projects/myproject/packages/pkg1/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/pkg1/index.ts: +/user/username/projects/myproject/packages/pkg1/index.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/build/index.d.ts: +/user/username/projects/myproject/packages/pkg2/build/index.d.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/build/const.d.ts: +/user/username/projects/myproject/packages/pkg2/build/const.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/package.json: +/user/username/projects/myproject/packages/pkg2/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/pkg2: +/user/username/projects/myproject/packages/pkg2: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/packages/pkg1: +/user/username/projects/myproject/packages/pkg1: *new* {} exitCode:: ExitStatus.undefined @@ -217,7 +217,13 @@ FsWatches:: {} /user/username/projects/myproject/packages/pkg2/package.json: {} -/user/username/projects/myproject/packages/pkg2/build/other.d.ts: +/user/username/projects/myproject/packages/pkg2/build/other.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/packages/pkg2/build/index.d.ts: + {} +/user/username/projects/myproject/packages/pkg2/build/const.d.ts: {} FsWatchesRecursive:: @@ -226,6 +232,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/packages/pkg1: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/packages/pkg2: + {} + exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/packages/pkg1/build/index.js] file written with same contents @@ -314,9 +324,13 @@ FsWatches:: {} /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/index.d.ts: *new* {} -/user/username/projects/myproject/packages/pkg2/build/const.d.ts: +/user/username/projects/myproject/packages/pkg2/build/const.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/packages/pkg2/build/other.d.ts: {} FsWatchesRecursive:: @@ -324,7 +338,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/pkg1: {} -/user/username/projects/myproject/packages/pkg2: +/user/username/projects/myproject/packages/pkg2: *new* {} 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 21bcc55018618..c2e9c183259a9 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,21 +55,21 @@ Shape signatures in builder refreshed for:: /project/src/index.ts (used version) PolledWatches:: -/project/node_modules/@types: +/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: +/project/tsconfig.json: *new* {} -/project/src/deps.d.ts: +/project/src/deps.d.ts: *new* {} -/project/src/index.ts: +/project/src/index.ts: *new* {} -/a/lib/lib.es2020.full.d.ts: +/a/lib/lib.es2020.full.d.ts: *new* {} FsWatchesRecursive:: -/project: +/project: *new* {} exitCode:: ExitStatus.undefined @@ -110,24 +110,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /project/src/index.ts (computed .d.ts) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/dist/index.js] file written with same contents 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 12b87072f115e..3cceabec1953e 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,19 +59,19 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} 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 f0fc2c1e5e0c6..4e3e995bcec3f 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,19 +65,19 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -134,21 +134,5 @@ 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: - {} -/a/b/app.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 d4885fc53ad1c..38476cca36298 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,19 +54,19 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} 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 628716cd6be04..da28d95127568 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,19 +44,19 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -101,22 +101,6 @@ 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: - {} -/a/b/app.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined @@ -149,21 +133,5 @@ 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: - {} -/a/b/app.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js b/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js index 1c83b9527c94d..9708b92791538 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js +++ b/tests/baselines/reference/tscWatch/programUpdates/Updates-diagnostics-when-'--allowArbitraryExtensions'-changes.js @@ -54,20 +54,16 @@ Shape signatures in builder refreshed for:: /b.d.css.ts (used version) /a.ts (used version) -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/a.ts: +/a.ts: *new* {} -/b.d.css.ts: +/b.d.css.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a.js] @@ -109,8 +105,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /tsconfig.json: {} @@ -119,7 +113,9 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b.d.css.ts: + {} exitCode:: ExitStatus.undefined @@ -162,8 +158,6 @@ Shape signatures in builder refreshed for:: /b.d.css.ts (used version) /a.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /tsconfig.json: {} @@ -171,11 +165,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/b.d.css.ts: +/b.d.css.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a.js] file written with same contents 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 514dcf029de41..50d0efdb8669e 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,18 +43,16 @@ Shape signatures in builder refreshed for:: /a.ts (used version) /a/lib/lib.d.ts (used version) -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/a.ts: +/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} exitCode:: ExitStatus.undefined @@ -97,20 +95,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - exitCode:: ExitStatus.undefined @@ -142,19 +126,5 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - 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 65fd9000e8c0a..0aba148927274 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,19 +44,19 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -109,7 +109,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} FsWatchesRecursive:: 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 9e93808d2e38e..e7c9e6301e449 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,16 +45,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/file1.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/file1.ts: +/a/b/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -98,17 +96,17 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (computed .d.ts) /a/b/file1.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/file1.ts: {} /a/lib/lib.d.ts: {} -/a/b/modulefile.ts: +/a/b/modulefile.ts: *new* {} -FsWatchesRecursive:: +FsWatchesRecursive *deleted*:: +/a: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/can-correctly-update-configured-project-when-set-of-root-files-has-changed-(new-file-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 ca2f45984cba5..66feb212340ca 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,19 +47,17 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/f1.js] @@ -110,11 +108,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/f1.js] file written with same contents 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 5a33cc7f03814..717ecd13c968f 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,19 +44,19 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -109,7 +109,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} FsWatchesRecursive:: 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 160f5ecb80da3..f0661364d60a2 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,21 +44,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/project/file1.ts (used version) PolledWatches:: -/user/username/projects/myproject/project/node_modules/@types: +/user/username/projects/myproject/project/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/project/tsconfig.json: +/user/username/projects/myproject/project/tsconfig.json: *new* {} -/user/username/projects/myproject/project/file1.ts: +/user/username/projects/myproject/project/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/project: +/user/username/projects/myproject/project: *new* {} exitCode:: ExitStatus.undefined @@ -113,7 +113,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/project/file2.ts: +/user/username/projects/myproject/project/file2.ts: *new* {} FsWatchesRecursive:: 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 7b628852d3f06..0ce3a7f5ef3d7 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,19 +44,17 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/A/B/app.js] 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 9d12369451bf7..393b65fc0d2ae 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,21 +50,19 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/f1.js] @@ -103,22 +101,6 @@ 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: - {} -/a/b/f1.ts: - {} -/a/b/f2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/out.js] 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 8fdb266fff2bf..fafede2c2ed10 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js +++ b/tests/baselines/reference/tscWatch/programUpdates/change-module-to-none.js @@ -45,19 +45,19 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -104,6 +104,10 @@ Shape signatures in builder refreshed for:: /a/b/f1.ts (used version) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /a/b/node_modules/@types: {"pollingInterval":500} 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 e4b0ff0720a77..651a4bb64af53 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,18 +55,14 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) /a/b/f1.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/f2.js] @@ -139,8 +135,6 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (computed .d.ts) /a/b/f1.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/f1.ts: {} @@ -148,11 +142,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/c/f3.ts: +/a/c/f3.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/f2.js] 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 41b9b0d15222e..f66936a968375 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,23 +56,21 @@ Shape signatures in builder refreshed for:: /a/c/f3.ts (used version) PolledWatches:: -/a/c/node_modules/@types: +/a/c/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/c/tsconfig.json: +/a/c/tsconfig.json: *new* {} -/a/c/f2.ts: +/a/c/f2.ts: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/c/f3.ts: +/a/c/f3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/f1.js] 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 956f33d43fd32..f23ab507b6c89 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js +++ b/tests/baselines/reference/tscWatch/programUpdates/config-file-is-deleted.js @@ -50,21 +50,21 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -88,23 +88,5 @@ Output:: -PolledWatches:: -/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: - {} - 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 85960ac0ae808..905cf574107a9 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,19 +53,19 @@ Shape signatures in builder refreshed for:: /src/app.ts (used version) PolledWatches:: -/src/node_modules/@types: +/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/src/tsconfig.json: +/src/tsconfig.json: *new* {} -/src/app.ts: +/src/app.ts: *new* {} -/compiler/lib.es5.d.ts: +/compiler/lib.es5.d.ts: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} exitCode:: ExitStatus.undefined @@ -118,7 +118,7 @@ FsWatches:: {} /compiler/lib.es5.d.ts: {} -/compiler/lib.es2015.promise.d.ts: +/compiler/lib.es2015.promise.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/correctly-parses-wild-card-directories-from-implicit-glob-when-two-keys-differ-only-in-directory-seperator.js b/tests/baselines/reference/tscWatch/programUpdates/correctly-parses-wild-card-directories-from-implicit-glob-when-two-keys-differ-only-in-directory-seperator.js index 7305e7a0627e8..a1f02660562b1 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,21 +62,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/f2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/f1.ts: +/user/username/projects/myproject/f1.ts: *new* {} -/user/username/projects/myproject/f2.ts: +/user/username/projects/myproject/f2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -225,7 +225,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/new-file.ts: +/user/username/projects/myproject/new-file.ts: *new* {} FsWatchesRecursive:: @@ -359,26 +359,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/f1.ts: - {} -/user/username/projects/myproject/f2.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/new-file.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/f1.js] file written with same contents 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 04bf91d49f66c..c984ba0f3ea4b 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,21 +59,21 @@ Shape signatures in builder refreshed for:: /a/b/d/f2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/c/f1.ts: +/a/b/c/f1.ts: *new* {} -/a/b/d/f2.ts: +/a/b/d/f2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} 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 9638a03ecf006..400e3b3c600e4 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,18 +59,16 @@ Shape signatures in builder refreshed for:: /a/b/c/module.d.ts (used version) /a/b/c/app.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/c/app.ts: +/a/b/c/app.ts: *new* {} -/a/b/c/module.d.ts: +/a/b/c/module.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} 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 56f44d901a039..d517b71fc7c50 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,20 +52,16 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) /a/b/f1.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/c/f3.ts: +/a/c/f3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/c/f3.js] @@ -148,8 +144,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/f1.ts: {} @@ -158,8 +152,12 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/f2.ts: + {} + FsWatchesRecursive:: -/a: +/a: *new* {} 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 a6cbb4fe321df..5afcfaebd9357 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,20 +52,16 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) /a/b/f1.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/c/f3.ts: +/a/c/f3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/c/f3.js] @@ -147,16 +143,20 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/f1.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/f1.ts: {} /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/f2.ts: + {} +/a/c/f3.ts: + {} + FsWatchesRecursive:: -/a: +/a: *new* {} 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 24b13fc297506..34b7b35abe300 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,21 +56,19 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -125,13 +123,11 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/second.tsconfig.json: +/a/b/second.tsconfig.json: *new* {} -/a/b/first.tsconfig.json: +/a/b/first.tsconfig.json: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -175,26 +171,6 @@ 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: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b/second.tsconfig.json: - {} -/a/b/first.tsconfig.json: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -236,26 +212,6 @@ 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: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b/second.tsconfig.json: - {} -/a/b/first.tsconfig.json: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -303,7 +259,11 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/second.tsconfig.json: + {} +/a/b/first.tsconfig.json: + {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/programUpdates/file-in-files-is-deleted.js b/tests/baselines/reference/tscWatch/programUpdates/file-in-files-is-deleted.js index d4deb7113f8c4..474889dc1df90 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,21 +50,19 @@ Shape signatures in builder refreshed for:: /a/b/f2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/f1.js] @@ -113,7 +111,7 @@ Shape signatures in builder refreshed for:: PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/f2.ts: +/a/b/f2.ts: *new* {"pollingInterval":500} FsWatches:: @@ -124,7 +122,9 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/f2.ts: + {} exitCode:: ExitStatus.undefined 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 34ac47728afb3..f944f589dcc59 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,21 +56,21 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} 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 cee064ea05548..29ca9e1858095 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js +++ b/tests/baselines/reference/tscWatch/programUpdates/handle-recreated-files-correctly.js @@ -56,21 +56,21 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -122,24 +122,6 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] file written with same contents @@ -191,6 +173,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/commonfile2.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -248,7 +234,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} FsWatchesRecursive:: 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 c9be8259f5f22..1096c3d6687d1 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,17 +52,15 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) PolledWatches:: -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {"pollingInterval":500} FsWatches:: -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -78,6 +76,16 @@ Input:: let y = 1 +PolledWatches *deleted*:: +/a/b/commonfile2.ts: + {"pollingInterval":500} + +FsWatches:: +/a/b/commonfile1.ts: + {} +/a/lib/lib.d.ts: + {} + Output:: >> Screen clear [12:00:19 AM] File change detected. Starting incremental compilation... @@ -103,18 +111,14 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/commonfile1.ts: {} /a/lib/lib.d.ts: {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] file written with same contents 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 dbca2804f1b3a..1d14d78a25226 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,19 +46,19 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} 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 ea44a54abcb80..583ac7e994723 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,14 +48,12 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a/node_modules/@types: +/a/node_modules/@types: *new* {} 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 eb404dde0c76d..f74a32a9e47b4 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,20 +43,18 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} -/a/b/app: +/a/b/app: *new* {"pollingInterval":500} -/a/b/test: +/a/b/test: *new* {"pollingInterval":500} -/a/b/something: +/a/b/something: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined 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 107af81ab8505..5fcfabdd8a84d 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1.ts: +/a/b/file1.ts: *new* {} -/a/b/modulefile.ts: +/a/b/modulefile.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -127,7 +127,7 @@ Shape signatures in builder refreshed for:: PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/modulefile: +/a/b/modulefile: *new* {"pollingInterval":500} FsWatches:: @@ -137,9 +137,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b: +/a/b: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* + {} + +FsWatches *deleted*:: +/a/b/modulefile.ts: {} FsWatchesRecursive:: @@ -195,6 +199,10 @@ PolledWatches:: /a/b/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/a/b/modulefile: + {"pollingInterval":500} + FsWatches:: /a/b/tsconfig.json: {} @@ -202,7 +210,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/modulefile.ts: +/a/b/modulefile.ts: *new* + {} + +FsWatches *deleted*:: +/a/b: + {} +/a/b/modulefile1.ts: {} FsWatchesRecursive:: 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 f74b016521f8a..a1f653ecb8c66 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,18 +46,14 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (used version) /a/b/file1.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/file1.ts: +/a/b/file1.ts: *new* {} -/a/b/modulefile.ts: +/a/b/modulefile.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/moduleFile.js] @@ -112,16 +108,18 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/file1.ts: {} /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/modulefile.ts: + {} + FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -160,17 +158,17 @@ Shape signatures in builder refreshed for:: /a/b/modulefile.ts (computed .d.ts) /a/b/file1.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /a/b/file1.ts: {} /a/lib/lib.d.ts: {} -/a/b/modulefile.ts: +/a/b/modulefile.ts: *new* {} -FsWatchesRecursive:: +FsWatchesRecursive *deleted*:: +/a: + {} exitCode:: ExitStatus.undefined 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 d39a86e24a4e2..c237ec788bcb7 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,21 +55,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/b.ts: +/user/username/projects/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -123,24 +123,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/lib/a.js] file written with same contents 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 04bae2da25928..20a05e723b6ba 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,21 +51,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -121,24 +121,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] 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 3cbbec4a23623..76d2ce70ac03c 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,21 +44,21 @@ Shape signatures in builder refreshed for:: /a/src/app.ts (used version) PolledWatches:: -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} -/a/notexistingfolder: +/a/notexistingfolder: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/src/app.ts: +/a/src/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/src: +/a/src: *new* {} 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 8fa802dd7c697..e44b2d6b12065 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,21 +60,19 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (used version) PolledWatches:: -/a/b/commonfile3.ts: +/a/b/commonfile3.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] 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 02b2148905a30..d2a2977a19685 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 @@ -50,23 +50,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file1.ts: +/user/username/projects/myproject/file1.ts: *new* {} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -170,7 +150,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file3.ts: +/user/username/projects/myproject/src/file3.ts: *new* {} FsWatchesRecursive:: @@ -201,27 +181,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 8d6be24a2de73..e74b4d1593d75 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 @@ -50,23 +50,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file1.ts: +/user/username/projects/myproject/file1.ts: *new* {} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -170,7 +150,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file3.ts: +/user/username/projects/myproject/src/file3.ts: *new* {} FsWatchesRecursive:: @@ -201,27 +181,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 6a9219d6b34eb..edfce1a157eaa 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 @@ -50,23 +50,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file1.ts: +/user/username/projects/myproject/file1.ts: *new* {} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -96,26 +96,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -162,7 +142,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file3.ts: +/user/username/projects/myproject/src/file3.ts: *new* {} FsWatchesRecursive:: @@ -189,27 +169,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 7f4f35d8090b4..50ff4d43f8c74 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 @@ -44,23 +44,23 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file1.ts: +/user/username/projects/myproject/file1.ts: *new* {} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -87,26 +87,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -151,7 +131,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file3.ts: +/user/username/projects/myproject/src/file3.ts: *new* {} FsWatchesRecursive:: @@ -190,27 +170,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 2df0cdad9f3c0..77c1b7861cb82 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 @@ -50,23 +50,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file1.ts: +/user/username/projects/myproject/file1.ts: *new* {} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -104,26 +104,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -170,7 +150,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file3.ts: +/user/username/projects/myproject/src/file3.ts: *new* {} FsWatchesRecursive:: @@ -201,27 +181,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 69e8447c98f39..f25bad77beda2 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 @@ -50,23 +50,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file2.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file1.ts: +/user/username/projects/myproject/file1.ts: *new* {} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -96,26 +96,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -162,7 +142,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/file3.ts: +/user/username/projects/myproject/src/file3.ts: *new* {} FsWatchesRecursive:: @@ -189,27 +169,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 f7d4ae6493f28..4c09b006dbb23 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,21 +58,21 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1.ts: +/a/b/file1.ts: *new* {} -/a/b/node_modules/module1.ts: +/a/b/node_modules/module1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b/node_modules: +/a/b/node_modules: *new* {} exitCode:: ExitStatus.undefined @@ -120,6 +120,10 @@ Shape signatures in builder refreshed for:: /a/b/file1.ts (computed .d.ts) PolledWatches:: +/a/b/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /a/b/node_modules/@types: {"pollingInterval":500} @@ -130,12 +134,18 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/module1.ts: +/a/module1.ts: *new* {} -/a/b: +/a/b: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/node_modules/module1.ts: + {} + +FsWatchesRecursive *deleted*:: +/a/b/node_modules: + {} exitCode:: ExitStatus.undefined 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 3ee08c3bfcdf7..46f8ac9ea59e3 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,21 +59,19 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -123,22 +121,6 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (computed .d.ts) /a/b/commonfile1.ts (computed .d.ts) -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] file written with same contents @@ -195,7 +177,9 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/commonfile2.ts: + {} exitCode:: ExitStatus.undefined 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 8db7ed20c3cbc..99f5b7145ceb6 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,16 +40,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/compile (used version) -PolledWatches:: - FsWatches:: -/a/compile: +/a/compile: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/compile.js] 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 44e401474b612..ee07b04befe33 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,21 +61,21 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} 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 b185bb6dfbe6e..fc68e3bb3a08c 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,16 +45,12 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/b/file.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/file.ts: +/a/b/file.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/file.js] @@ -100,16 +96,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/file.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/a/b/file.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/file.js] 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 f247347b2c26a..8ac1a669ef5ed 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,18 +51,14 @@ Shape signatures in builder refreshed for:: /a/c/f2.ts (used version) /a/d/f3.ts (used version) -PolledWatches:: - FsWatches:: -/a/c/f2.ts: +/a/c/f2.ts: *new* {} -/a/d/f3.ts: +/a/d/f3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/c/f2.js] @@ -110,8 +106,6 @@ Shape signatures in builder refreshed for:: /a/d/f3.ts (used version) /a/b/f1.ts (used version) -PolledWatches:: - FsWatches:: /a/c/f2.ts: {} @@ -119,11 +113,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/f1.ts: +/a/b/f1.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/c/f2.js] file written with same contents 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 05d9c456981c7..fc15c631c4454 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,22 +49,20 @@ Shape signatures in builder refreshed for:: /a/b/app.ts (used version) /a/b/node_modules/@types/node/index.d.ts (used version) -PolledWatches:: - FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/b/node_modules/@types/node/index.d.ts: +/a/b/node_modules/@types/node/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b/node_modules: +/a/b/node_modules: *new* {} -/a/b: +/a/b: *new* {} 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 a11c6fc519827..fefca4448f50f 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 @@ -56,20 +56,18 @@ Shape signatures in builder refreshed for:: /a.ts (used version) /a/lib/lib.d.ts (used version) -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/a.ts: +/a.ts: *new* {} -/b.ts: +/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} exitCode:: ExitStatus.undefined @@ -171,22 +169,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a.ts: - {} -/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - exitCode:: ExitStatus.undefined //// [/b.js] file written with same contents @@ -241,22 +223,6 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a.ts: - {} -/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - exitCode:: ExitStatus.undefined //// [/b.js] file written with same contents 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 1c294b8ddcdfc..40f3a46b61628 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,18 +49,16 @@ Shape signatures in builder refreshed for:: /a.ts (used version) /a/lib/lib.d.ts (used version) -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/a.ts: +/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} exitCode:: ExitStatus.undefined @@ -111,20 +109,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - exitCode:: ExitStatus.undefined //// [/a.js] 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 a718a083f7cff..4def50e4f854f 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,19 +45,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.tsx (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/index.tsx: +/user/username/projects/myproject/index.tsx: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -94,6 +94,10 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} 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 ac38736a4aaef..40682c1e0e150 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,21 +51,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -121,24 +121,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -177,24 +159,6 @@ 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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -241,24 +205,6 @@ 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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 7ade975359b04..113e9076d3f48 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,21 +54,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -113,24 +113,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -168,24 +150,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -233,24 +197,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -288,23 +234,5 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (computed .d.ts) /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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 70d5dcf2ddf24..5680f398084d4 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,17 +60,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -112,18 +110,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -173,18 +159,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 49444245c1ef0..e187569f15aaf 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,17 +55,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -106,18 +104,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -161,18 +147,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 eaf6304a66b14..f1f51659f5d37 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,17 +55,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -106,18 +104,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents @@ -161,18 +147,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] file written with same contents 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 13e80bebbdca0..d4c3230e4a49a 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,17 +57,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -105,18 +103,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -167,18 +153,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] 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 f8229c73998a8..c602c12b565ae 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,17 +52,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -99,18 +97,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -155,18 +141,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] 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 53379be92a74e..8f1da7c3675a0 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,17 +52,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -99,18 +97,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -155,18 +141,6 @@ Semantic diagnostics in builder refreshed for:: 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/a.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] 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 f8a0ee0ab6cfd..bf6f79252538d 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,19 +46,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -133,7 +133,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} FsWatchesRecursive:: @@ -187,6 +187,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/b.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 6e9fbbc51dfbb..779415c9f6887 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,20 +49,18 @@ Shape signatures in builder refreshed for:: /b.ts (used version) /a/lib/lib.d.ts (used version) -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/a.ts: +/a.ts: *new* {} -/b.ts: +/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} exitCode:: ExitStatus.undefined @@ -126,21 +124,5 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a.ts: - {} -/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - 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 982c3e13f4437..3fbe6a8adaacd 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,19 +58,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -113,21 +113,5 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - 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 c400ec28ffc0d..ed989222c781d 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,19 +45,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -100,22 +100,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -152,22 +136,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -199,21 +167,5 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - 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 69342ade911b3..298af548e5644 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,23 +52,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/data.json: +/user/username/projects/myproject/data.json: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -111,6 +111,12 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (computed .d.ts) PolledWatches:: +/user/username/projects/myproject/data.json: + {"pollingInterval":500} *new* +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/myproject/data.json: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: @@ -124,8 +130,12 @@ FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject: + {} *new* +/user/username/projects/myproject/data.json: *new* {} -/user/username/projects/myproject/data.json: + +FsWatches *deleted*:: +/user/username/projects/myproject: {} FsWatchesRecursive:: 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 c0e987afec7be..6219d9258e976 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,19 +44,19 @@ Shape signatures in builder refreshed for:: /home/username/project/src/file1.ts (used version) PolledWatches:: -/home/username/project/node_modules/@types: +/home/username/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/home/username/project/tsconfig.json: +/home/username/project/tsconfig.json: *new* {} -/home/username/project/src/file1.ts: +/home/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/home/username/project: +/home/username/project: *new* {} exitCode:: ExitStatus.undefined @@ -105,7 +105,11 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/home/username/project/src/file2.ts: +/home/username/project/src/file2.ts: *new* + {} + +FsWatches *deleted*:: +/home/username/project/src/file1.ts: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js index b66e13c4bf181..8acbf2402c32b 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-changing-`allowImportingTsExtensions`-of-config-file.js @@ -67,21 +67,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -124,23 +124,5 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - 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 2f9df780552cd..a786be486da8d 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-creating-extensionless-file.js @@ -55,19 +55,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/index.ts: +/user/username/projects/myproject/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -91,21 +91,5 @@ Reloading new file names and options Synchronizing program -PolledWatches:: -/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: - {} - 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 780a10466bde6..858c25aa8149c 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,23 +65,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/client/linktofolder2/module2.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/client/folder1/module1.ts: +/user/username/projects/myproject/client/folder1/module1.ts: *new* {} -/user/username/projects/myproject/client/linktofolder2/module2.ts: +/user/username/projects/myproject/client/linktofolder2/module2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/client: +/user/username/projects/myproject/client: *new* {} -/user/username/projects/myproject/folder2: +/user/username/projects/myproject/folder2: *new* {} exitCode:: ExitStatus.undefined @@ -158,7 +158,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/client/linktofolder2/module3.ts: +/user/username/projects/myproject/client/linktofolder2/module3.ts: *new* {} FsWatchesRecursive:: 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 91730be93d4d4..07010aed67e95 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,29 +77,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/projects/node_modules/@types: +/user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/class1.d.ts: +/user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project2/class2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project1: +/user/username/projects/myproject/projects/project1: *new* {} -/user/username/projects/myproject/projects/project2: +/user/username/projects/myproject/projects/project2: *new* {} exitCode:: ExitStatus.undefined @@ -232,7 +232,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -263,6 +263,36 @@ Input:: declare class class3 {} +PolledWatches:: +/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} + +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"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: + {} +/user/username/projects/myproject/projects/project2: + {} + Output:: FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file @@ -322,7 +352,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: @@ -424,34 +454,6 @@ 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 -PolledWatches:: -/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} - -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: - {} -/user/username/projects/myproject/projects/project2: - {} - exitCode:: ExitStatus.undefined @@ -512,7 +514,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -527,6 +529,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} @@ -604,6 +610,36 @@ Input:: declare class class3 {} +PolledWatches:: +/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} + +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"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: + {} +/user/username/projects/myproject/projects/project2: + {} + Output:: FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file @@ -663,7 +699,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-skipLibCheck-and-skipDefaultLibCheck-changes.js b/tests/baselines/reference/tscWatch/programUpdates/when-skipLibCheck-and-skipDefaultLibCheck-changes.js index b265e8925eacb..9d62d76f4390d 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,21 +72,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.d.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.d.ts: +/user/username/projects/myproject/b.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -129,24 +129,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -189,24 +171,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -253,24 +217,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -312,24 +258,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -367,24 +295,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - exitCode:: ExitStatus.undefined @@ -432,23 +342,5 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} - 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 106039f6732b1..412f2efd54cfd 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,21 +53,19 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -98,21 +96,5 @@ 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: - {} -/a/b/commonfile1.ts: - {} -/a/b/commonfile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js index ccbe5ead3f71c..9e7a4c12562a5 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-sample-project.js @@ -497,33 +497,33 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: -/user/username/projects/sample1/tests/node_modules/@types: +/user/username/projects/sample1/tests/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/sample1/node_modules/@types: +/user/username/projects/sample1/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/sample1/tests/tsconfig.json: +/user/username/projects/sample1/tests/tsconfig.json: *new* {} -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/tests/index.ts: +/user/username/projects/sample1/tests/index.ts: *new* {} -/user/username/projects/sample1/core/index.d.ts: +/user/username/projects/sample1/core/index.d.ts: *new* {} -/user/username/projects/sample1/logic/index.d.ts: +/user/username/projects/sample1/logic/index.d.ts: *new* {} -/user/username/projects/sample1/core/anothermodule.d.ts: +/user/username/projects/sample1/core/anothermodule.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -644,36 +644,6 @@ 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: - {} -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/index.d.ts: - {} -/user/username/projects/sample1/logic/index.d.ts: - {} -/user/username/projects/sample1/core/anothermodule.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined @@ -860,36 +830,6 @@ Dependencies for:: /user/username/projects/sample1/logic/index.d.ts /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: - {} -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/tests/index.ts: - {} -/user/username/projects/sample1/core/index.d.ts: - {} -/user/username/projects/sample1/logic/index.d.ts: - {} -/user/username/projects/sample1/core/anothermodule.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/sample1/tests/index.js] file written with same contents @@ -1190,7 +1130,11 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/sample1/logic/decls/index.d.ts: +/user/username/projects/sample1/logic/decls/index.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/sample1/logic/index.d.ts: {} FsWatchesRecursive:: 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 ff552d69c500c..6d19443a74d83 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 @@ -288,39 +288,39 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: -/user/username/projects/transitivereferences/c/node_modules/@types: +/user/username/projects/transitivereferences/c/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: +/user/username/projects/transitivereferences/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/user/username/projects/transitivereferences/c/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/user/username/projects/transitivereferences/b/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences/a/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/c/index.ts: *new* {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences: *new* {} -/user/username/projects/transitivereferences/b/index.d.ts: +/user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: +/user/username/projects/transitivereferences/b: *new* {} -/user/username/projects/transitivereferences/a: +/user/username/projects/transitivereferences/a: *new* {} -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/refs: *new* {} -/user/username/projects/transitivereferences/c: +/user/username/projects/transitivereferences/c: *new* {} exitCode:: ExitStatus.undefined @@ -479,42 +479,6 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /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: - {} -/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: - {} -/user/username/projects/transitivereferences/b/index.d.ts: - {} -/user/username/projects/transitivereferences/a/index.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} -/user/username/projects/transitivereferences/a: - {} -/user/username/projects/transitivereferences/refs: - {} -/user/username/projects/transitivereferences/c: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/transitiveReferences/c/index.js] file written with same contents @@ -614,6 +578,12 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} *new* +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: @@ -635,8 +605,14 @@ FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: + {} *new* +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: + +FsWatches *deleted*:: +/user/username/projects/transitivereferences: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatchesRecursive:: @@ -646,7 +622,11 @@ FsWatchesRecursive:: {} /user/username/projects/transitivereferences/c: {} -/user/username/projects/transitivereferences/nrefs: +/user/username/projects/transitivereferences/nrefs: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/refs: {} exitCode:: ExitStatus.undefined @@ -743,6 +723,12 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} *new* +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: @@ -764,8 +750,14 @@ FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: + {} *new* +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: + +FsWatches *deleted*:: +/user/username/projects/transitivereferences: + {} +/user/username/projects/transitivereferences/nrefs/a.d.ts: {} FsWatchesRecursive:: @@ -775,7 +767,11 @@ FsWatchesRecursive:: {} /user/username/projects/transitivereferences/c: {} -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/refs: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/nrefs: {} exitCode:: ExitStatus.undefined @@ -875,7 +871,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/index.d.ts: {} FsWatchesRecursive:: @@ -887,7 +887,7 @@ FsWatchesRecursive:: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/nrefs: +/user/username/projects/transitivereferences/nrefs: *new* {} exitCode:: ExitStatus.undefined @@ -979,6 +979,10 @@ FsWatches:: /user/username/projects/transitivereferences/refs/a.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/transitivereferences/nrefs/a.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} @@ -989,6 +993,10 @@ FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/nrefs: + {} + exitCode:: ExitStatus.undefined @@ -1084,7 +1092,13 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/b/index.ts: +/user/username/projects/transitivereferences/b/index.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/tsconfig.json: + {} +/user/username/projects/transitivereferences/b/index.d.ts: {} FsWatchesRecursive:: @@ -1095,6 +1109,10 @@ FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/a: + {} + exitCode:: ExitStatus.undefined //// [/user/username/projects/transitiveReferences/b/index.js] file written with same contents @@ -1192,11 +1210,15 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences/a/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/b/index.d.ts: +/user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/b/index.ts: {} FsWatchesRecursive:: @@ -1206,7 +1228,7 @@ FsWatchesRecursive:: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: +/user/username/projects/transitivereferences/a: *new* {} exitCode:: ExitStatus.undefined @@ -1306,7 +1328,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.ts: +/user/username/projects/transitivereferences/a/index.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/index.d.ts: {} FsWatchesRecursive:: @@ -1416,7 +1442,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/index.ts: {} 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 e8670ab88fb07..79ff40fd375c6 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 @@ -288,37 +288,37 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: -/user/username/projects/transitivereferences/c/node_modules/@types: +/user/username/projects/transitivereferences/c/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/transitivereferences/node_modules/@types: +/user/username/projects/transitivereferences/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/c/tsconfig.json: +/user/username/projects/transitivereferences/c/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/b/tsconfig.json: +/user/username/projects/transitivereferences/b/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences/a/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/c/index.ts: +/user/username/projects/transitivereferences/c/index.ts: *new* {} -/user/username/projects/transitivereferences: +/user/username/projects/transitivereferences: *new* {} -/user/username/projects/transitivereferences/b/index.d.ts: +/user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: +/user/username/projects/transitivereferences/b: *new* {} -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/refs: *new* {} -/user/username/projects/transitivereferences/a: +/user/username/projects/transitivereferences/a: *new* {} exitCode:: ExitStatus.undefined @@ -477,40 +477,6 @@ Dependencies for:: /user/username/projects/transitiveReferences/b/index.d.ts /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: - {} -/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: - {} -/user/username/projects/transitivereferences/b/index.d.ts: - {} -/user/username/projects/transitivereferences/a/index.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/transitivereferences/b: - {} -/user/username/projects/transitivereferences/refs: - {} -/user/username/projects/transitivereferences/a: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/transitiveReferences/c/index.js] file written with same contents @@ -610,6 +576,12 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} *new* +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: @@ -631,14 +603,28 @@ FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: + {} *new* +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: + +FsWatches *deleted*:: +/user/username/projects/transitivereferences: + {} +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: + {} *new* +/user/username/projects/transitivereferences/nrefs: *new* {} -/user/username/projects/transitivereferences/nrefs: +/user/username/projects/transitivereferences/a: + {} *new* + +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/b: + {} +/user/username/projects/transitivereferences/refs: {} /user/username/projects/transitivereferences/a: {} @@ -737,6 +723,12 @@ Dependencies for:: /user/username/projects/transitiveReferences/a/index.d.ts PolledWatches:: +/user/username/projects/transitivereferences/c/node_modules/@types: + {"pollingInterval":500} *new* +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/transitivereferences/c/node_modules/@types: {"pollingInterval":500} /user/username/projects/transitivereferences/node_modules/@types: @@ -758,14 +750,28 @@ FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/transitivereferences: + {} *new* +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: + +FsWatches *deleted*:: +/user/username/projects/transitivereferences: + {} +/user/username/projects/transitivereferences/nrefs/a.d.ts: {} FsWatchesRecursive:: /user/username/projects/transitivereferences/b: + {} *new* +/user/username/projects/transitivereferences/refs: *new* {} -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/a: + {} *new* + +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/b: + {} +/user/username/projects/transitivereferences/nrefs: {} /user/username/projects/transitivereferences/a: {} @@ -867,7 +873,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/index.d.ts: {} FsWatchesRecursive:: @@ -875,7 +885,11 @@ FsWatchesRecursive:: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/nrefs: +/user/username/projects/transitivereferences/nrefs: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/a: {} exitCode:: ExitStatus.undefined @@ -967,12 +981,20 @@ FsWatches:: /user/username/projects/transitivereferences/refs/a.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/transitivereferences/nrefs/a.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/transitivereferences/b: {} /user/username/projects/transitivereferences/refs: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/nrefs: + {} + exitCode:: ExitStatus.undefined @@ -1068,7 +1090,13 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/b/index.ts: +/user/username/projects/transitivereferences/b/index.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/tsconfig.json: + {} +/user/username/projects/transitivereferences/b/index.d.ts: {} FsWatchesRecursive:: @@ -1174,11 +1202,15 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/a/tsconfig.json: +/user/username/projects/transitivereferences/a/tsconfig.json: *new* {} -/user/username/projects/transitivereferences/b/index.d.ts: +/user/username/projects/transitivereferences/b/index.d.ts: *new* {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/b/index.ts: {} FsWatchesRecursive:: @@ -1186,7 +1218,7 @@ FsWatchesRecursive:: {} /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/a: +/user/username/projects/transitivereferences/a: *new* {} exitCode:: ExitStatus.undefined @@ -1286,7 +1318,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.ts: +/user/username/projects/transitivereferences/a/index.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/index.d.ts: {} FsWatchesRecursive:: @@ -1394,7 +1430,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/b/index.d.ts: {} -/user/username/projects/transitivereferences/a/index.d.ts: +/user/username/projects/transitivereferences/a/index.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a/index.ts: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js index 6e858d68283d9..7b723bc3b0cce 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js @@ -308,29 +308,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: +/user/username/projects/transitivereferences/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/user/username/projects/transitivereferences/tsconfig.c.json: *new* {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/tsconfig.b.json: *new* {} -/user/username/projects/transitivereferences/tsconfig.a.json: +/user/username/projects/transitivereferences/tsconfig.a.json: *new* {} -/user/username/projects/transitivereferences/c.ts: +/user/username/projects/transitivereferences/c.ts: *new* {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/b.d.ts: *new* {} -/user/username/projects/transitivereferences/a.d.ts: +/user/username/projects/transitivereferences/a.d.ts: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/refs: *new* {} exitCode:: ExitStatus.undefined @@ -490,32 +490,6 @@ Dependencies for:: /user/username/projects/transitiveReferences/b.d.ts /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: - {} -/user/username/projects/transitivereferences/tsconfig.b.json: - {} -/user/username/projects/transitivereferences/tsconfig.a.json: - {} -/user/username/projects/transitivereferences/c.ts: - {} -/user/username/projects/transitivereferences/b.d.ts: - {} -/user/username/projects/transitivereferences/a.d.ts: - {} -/user/username/projects/transitivereferences/refs/a.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/transitivereferences/refs: - {} - exitCode:: ExitStatus.undefined //// [/user/username/projects/transitiveReferences/c.js] file written with same contents @@ -611,6 +585,10 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} @@ -629,11 +607,19 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/refs/a.d.ts: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/nrefs: +/user/username/projects/transitivereferences/nrefs: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/refs: {} exitCode:: ExitStatus.undefined @@ -726,6 +712,10 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: +/user/username/projects/transitivereferences/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/transitivereferences/node_modules/@types: {"pollingInterval":500} @@ -744,11 +734,19 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/refs/a.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/nrefs/a.d.ts: {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/refs: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/nrefs: {} exitCode:: ExitStatus.undefined @@ -844,13 +842,17 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/nrefs/a.d.ts: +/user/username/projects/transitivereferences/nrefs/a.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a.d.ts: {} FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: {} -/user/username/projects/transitivereferences/nrefs: +/user/username/projects/transitivereferences/nrefs: *new* {} exitCode:: ExitStatus.undefined @@ -938,10 +940,18 @@ FsWatches:: /user/username/projects/transitivereferences/refs/a.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/transitivereferences/nrefs/a.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/transitivereferences/refs: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/transitivereferences/nrefs: + {} + exitCode:: ExitStatus.undefined @@ -1033,7 +1043,13 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/b.ts: +/user/username/projects/transitivereferences/b.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/tsconfig.a.json: + {} +/user/username/projects/transitivereferences/b.d.ts: {} FsWatchesRecursive:: @@ -1144,11 +1160,15 @@ FsWatches:: {} /user/username/projects/transitivereferences/refs/a.d.ts: {} -/user/username/projects/transitivereferences/tsconfig.a.json: +/user/username/projects/transitivereferences/tsconfig.a.json: *new* {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/b.d.ts: *new* {} -/user/username/projects/transitivereferences/a.d.ts: +/user/username/projects/transitivereferences/a.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/b.ts: {} FsWatchesRecursive:: @@ -1248,7 +1268,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/b.d.ts: {} -/user/username/projects/transitivereferences/a.ts: +/user/username/projects/transitivereferences/a.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a.d.ts: {} FsWatchesRecursive:: @@ -1349,7 +1373,11 @@ FsWatches:: {} /user/username/projects/transitivereferences/b.d.ts: {} -/user/username/projects/transitivereferences/a.d.ts: +/user/username/projects/transitivereferences/a.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/transitivereferences/a.ts: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js b/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js index 4a71d6e7d7e2c..5031b21990f89 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/when-declarationMap-changes-for-dependency.js @@ -242,29 +242,29 @@ Dependencies for:: /user/username/projects/sample1/core/index.d.ts PolledWatches:: -/user/username/projects/sample1/logic/node_modules/@types: +/user/username/projects/sample1/logic/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/sample1/node_modules/@types: +/user/username/projects/sample1/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/sample1/logic/tsconfig.json: +/user/username/projects/sample1/logic/tsconfig.json: *new* {} -/user/username/projects/sample1/core/tsconfig.json: +/user/username/projects/sample1/core/tsconfig.json: *new* {} -/user/username/projects/sample1/logic/index.ts: +/user/username/projects/sample1/logic/index.ts: *new* {} -/user/username/projects/sample1/core/index.d.ts: +/user/username/projects/sample1/core/index.d.ts: *new* {} -/user/username/projects/sample1/core/anothermodule.d.ts: +/user/username/projects/sample1/core/anothermodule.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/sample1/core: +/user/username/projects/sample1/core: *new* {} -/user/username/projects/sample1/logic: +/user/username/projects/sample1/logic: *new* {} exitCode:: ExitStatus.undefined @@ -528,31 +528,5 @@ Dependencies for:: /user/username/projects/sample1/core/anotherModule.d.ts /user/username/projects/sample1/core/index.d.ts -PolledWatches:: -/user/username/projects/sample1/logic/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/sample1/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/sample1/logic/tsconfig.json: - {} -/user/username/projects/sample1/core/tsconfig.json: - {} -/user/username/projects/sample1/logic/index.ts: - {} -/user/username/projects/sample1/core/index.d.ts: - {} -/user/username/projects/sample1/core/anothermodule.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/sample1/core: - {} -/user/username/projects/sample1/logic: - {} - 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 c9a2d56811e20..ee5cb2f57067f 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 @@ -295,29 +295,29 @@ Dependencies for:: /user/username/projects/transitiveReferences/a.d.ts PolledWatches:: -/user/username/projects/transitivereferences/node_modules/@types: +/user/username/projects/transitivereferences/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/transitivereferences/tsconfig.c.json: +/user/username/projects/transitivereferences/tsconfig.c.json: *new* {} -/user/username/projects/transitivereferences/tsconfig.b.json: +/user/username/projects/transitivereferences/tsconfig.b.json: *new* {} -/user/username/projects/transitivereferences/tsconfig.a.json: +/user/username/projects/transitivereferences/tsconfig.a.json: *new* {} -/user/username/projects/transitivereferences/c.ts: +/user/username/projects/transitivereferences/c.ts: *new* {} -/user/username/projects/transitivereferences/b.d.ts: +/user/username/projects/transitivereferences/b.d.ts: *new* {} -/user/username/projects/transitivereferences/a.d.ts: +/user/username/projects/transitivereferences/a.d.ts: *new* {} -/user/username/projects/transitivereferences/refs/a.d.ts: +/user/username/projects/transitivereferences/refs/a.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/transitivereferences/refs: +/user/username/projects/transitivereferences/refs: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js index 692831d354f13..6b72a123eb27b 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/caching-works.js @@ -56,18 +56,16 @@ Shape signatures in builder refreshed for:: /a/f1.ts (used version) /a/d/f0.ts (used version) -PolledWatches:: - FsWatches:: -/a/d/f0.ts: +/a/d/f0.ts: *new* {} -/a/f1.ts: +/a/f1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -129,20 +127,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/d/f0.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: -/a/d/f0.ts: - {} -/a/f1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a: - {} - exitCode:: ExitStatus.undefined //// [/a/d/f0.js] @@ -188,7 +172,7 @@ Shape signatures in builder refreshed for:: /a/d/f0.ts (computed .d.ts) PolledWatches:: -/node_modules: +/node_modules: *new* {"pollingInterval":500} FsWatches:: @@ -196,7 +180,11 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/: +/: *new* + {} + +FsWatches *deleted*:: +/a/f1.ts: {} FsWatchesRecursive:: @@ -255,14 +243,20 @@ Shape signatures in builder refreshed for:: /a/f1.ts (computed .d.ts) /a/d/f0.ts (computed .d.ts) -PolledWatches:: +PolledWatches *deleted*:: +/node_modules: + {"pollingInterval":500} FsWatches:: /a/d/f0.ts: {} /a/lib/lib.d.ts: {} -/a/f1.ts: +/a/f1.ts: *new* + {} + +FsWatches *deleted*:: +/: {} FsWatchesRecursive:: 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 91947ea058d5f..7add409c25979 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,23 +50,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/test.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/test.ts: +/user/username/projects/myproject/test.ts: *new* {} -/user/username/projects/myproject/node_modules/somemodule/index.d.ts: +/user/username/projects/myproject/node_modules/somemodule/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -86,25 +86,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/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 1342ba7c13fdb..ddd608f4af636 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,18 +49,16 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/test.ts: +/user/username/projects/myproject/test.ts: *new* {} -/user/username/projects/myproject/node_modules/somemodule/index.d.ts: +/user/username/projects/myproject/node_modules/somemodule/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user: +/user: *new* {} exitCode:: ExitStatus.undefined @@ -80,19 +78,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/test.ts: - {} -/user/username/projects/myproject/node_modules/somemodule/index.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/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 308ba08c9f160..c5f5d4d382055 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,19 +46,19 @@ Shape signatures in builder refreshed for:: /a/foo.ts (used version) PolledWatches:: -/node_modules: +/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/foo.ts: +/a/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/: +/: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -105,14 +105,20 @@ Shape signatures in builder refreshed for:: /a/bar.d.ts (used version) /a/foo.ts (computed .d.ts) -PolledWatches:: +PolledWatches *deleted*:: +/node_modules: + {"pollingInterval":500} FsWatches:: /a/foo.ts: {} /a/lib/lib.d.ts: {} -/a/bar.d.ts: +/a/bar.d.ts: *new* + {} + +FsWatches *deleted*:: +/: {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js b/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js index f05f093e47998..64903d73a20af 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js @@ -152,27 +152,27 @@ Shape signatures in builder refreshed for:: /src/project/filewithtyperefs.ts (computed .d.ts during emit) PolledWatches:: -/src/project/node_modules/@types: +/src/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/src/project/tsconfig.json: +/src/project/tsconfig.json: *new* {} -/src/project/filewithimports.ts: +/src/project/filewithimports.ts: *new* {} -/src/project/node_modules/pkg0/index.d.ts: +/src/project/node_modules/pkg0/index.d.ts: *new* {} -/src/project/filewithtyperefs.ts: +/src/project/filewithtyperefs.ts: *new* {} -/src/project/node_modules/pkg2/index.d.ts: +/src/project/node_modules/pkg2/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/src/project/node_modules: +/src/project/node_modules: *new* {} -/src/project: +/src/project: *new* {} exitCode:: ExitStatus.undefined @@ -425,7 +425,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/src/project/node_modules/pkg1/index.d.ts: +/src/project/node_modules/pkg1/index.d.ts: *new* {} FsWatchesRecursive:: @@ -657,7 +657,7 @@ FsWatches:: {} /src/project/node_modules/pkg1/index.d.ts: {} -/src/project/node_modules/pkg3/index.d.ts: +/src/project/node_modules/pkg3/index.d.ts: *new* {} FsWatchesRecursive:: 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 eca0cff761f60..3127b6f4ae1b7 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,18 +46,16 @@ Shape signatures in builder refreshed for:: /a/bar.d.ts (used version) /a/foo.ts (used version) -PolledWatches:: - FsWatches:: -/a/foo.ts: +/a/foo.ts: *new* {} -/a/bar.d.ts: +/a/bar.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} exitCode:: ExitStatus.undefined @@ -102,7 +100,7 @@ Shape signatures in builder refreshed for:: /a/foo.ts (computed .d.ts) PolledWatches:: -/node_modules: +/node_modules: *new* {"pollingInterval":500} FsWatches:: @@ -110,7 +108,11 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/: +/: *new* + {} + +FsWatches *deleted*:: +/a/bar.d.ts: {} FsWatchesRecursive:: @@ -152,14 +154,20 @@ Shape signatures in builder refreshed for:: /a/bar.d.ts (used version) /a/foo.ts (computed .d.ts) -PolledWatches:: +PolledWatches *deleted*:: +/node_modules: + {"pollingInterval":500} FsWatches:: /a/foo.ts: {} /a/lib/lib.d.ts: {} -/a/bar.d.ts: +/a/bar.d.ts: *new* + {} + +FsWatches *deleted*:: +/: {} FsWatchesRecursive:: 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 68ddf1b43970e..37997716d3d26 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,19 +51,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/lib/app.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/lib/app.ts: +/user/username/projects/myproject/lib/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -86,6 +86,24 @@ declare namespace myapp { } +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} + +FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/lib/app.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive:: +/user/username/projects/myproject: + {} +/user/username/projects/myproject/node_modules: *new* + {} + Output:: sysLog:: /user/username/projects/myproject/node_modules:: Changing watcher to PresentFileSystemEntryWatcher @@ -113,8 +131,6 @@ 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) -PolledWatches:: - FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -122,9 +138,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: +/user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: +/user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: *new* {} FsWatchesRecursive:: @@ -143,25 +159,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/lib/app.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/node_modules/@myapp/ts-types/types/somefile.define.d.ts: - {} -/user/username/projects/myproject/node_modules/@myapp/ts-types/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/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 dec22bd7b207c..3aebd661abb00 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,31 +60,31 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/main/@scoped: +/user/username/projects/myproject/main/@scoped: *new* {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/main/index.ts: +/user/username/projects/myproject/main/index.ts: *new* {} -/user/username/projects/myproject/linked-package/dist/index.d.ts: +/user/username/projects/myproject/linked-package/dist/index.d.ts: *new* {} -/user/username/projects/myproject/linked-package/dist/other.d.ts: +/user/username/projects/myproject/linked-package/dist/other.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/linked-package/package.json: +/user/username/projects/myproject/linked-package/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/linked-package: +/user/username/projects/myproject/linked-package: *new* {} -/user/username/projects/myproject/main/node_modules: +/user/username/projects/myproject/main/node_modules: *new* {} 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 d51a726173c29..3fef53a9de15f 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,21 +61,19 @@ Shape signatures in builder refreshed for:: /a/b/bar.d.ts (used version) PolledWatches:: -/a/b/node_modules: +/a/b/node_modules: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/foo.ts: +/a/b/foo.ts: *new* {} -/a/b/bar.d.ts: +/a/b/bar.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/foo.js] @@ -127,22 +125,6 @@ Shape signatures in builder refreshed for:: /a/b/bar.d.ts (used version) /a/b/foo.ts (computed .d.ts) -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined //// [/a/b/foo.js] file written with same contents 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 eae165b7aaf8a..578e33fee9ce6 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,30 +90,28 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/worker.ts: +/user/username/projects/myproject/worker.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/index.d.ts: +/user/username/projects/myproject/node_modules/@types/node/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/base.d.ts: +/user/username/projects/myproject/node_modules/@types/node/base.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: +/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: +/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -246,8 +244,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/worker.ts (computed .d.ts) -PolledWatches:: - FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -256,6 +252,16 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types/node/index.d.ts: + {} +/user/username/projects/myproject/node_modules/@types/node/base.d.ts: + {} +/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: + {} +/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} @@ -337,8 +343,6 @@ 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) -PolledWatches:: - FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -346,7 +350,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: +/user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: *new* {} FsWatchesRecursive:: @@ -402,26 +406,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/worker.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: - {} -/user/username/projects/myproject/node_modules/@types: - {} -/user/username/projects/myproject: - {} - exitCode:: ExitStatus.undefined @@ -511,8 +495,6 @@ 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) -PolledWatches:: - FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -522,13 +504,13 @@ FsWatches:: {} /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts: {} -/user/username/projects/myproject/node_modules/@types/node/index.d.ts: +/user/username/projects/myproject/node_modules/@types/node/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/base.d.ts: +/user/username/projects/myproject/node_modules/@types/node/base.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: +/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts: *new* {} -/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: +/user/username/projects/myproject/node_modules/@types/node/globals.d.ts: *new* {} FsWatchesRecursive:: 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 8b356d8b26d53..7ae6fae132abf 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,19 +46,17 @@ Shape signatures in builder refreshed for:: /a/b/foo.ts (used version) PolledWatches:: -/a/b/node_modules: +/a/b/node_modules: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/foo.ts: +/a/b/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/foo.js] @@ -86,6 +84,24 @@ declare module "fs" { } +PolledWatches *deleted*:: +/a/b/node_modules: + {"pollingInterval":500} +/a/b/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/a/b/foo.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive:: +/a/b/node_modules: *new* + {} +/a/b/node_modules/@types: *new* + {} + Output:: sysLog:: /a/b/node_modules:: Changing watcher to PresentFileSystemEntryWatcher sysLog:: /a/b/node_modules/@types:: Changing watcher to PresentFileSystemEntryWatcher @@ -113,22 +129,24 @@ Shape signatures in builder refreshed for:: /a/b/foo.ts (computed .d.ts) /a/b/node_modules/@types/node/index.d.ts (used version) -PolledWatches:: - FsWatches:: /a/b/foo.ts: {} /a/lib/lib.d.ts: {} -/a/b/node_modules/@types/node/index.d.ts: +/a/b/node_modules/@types/node/index.d.ts: *new* {} -/a/b/node_modules/@types/node/package.json: +/a/b/node_modules/@types/node/package.json: *new* {} FsWatchesRecursive:: /a/b/node_modules/@types: {} +FsWatchesRecursive *deleted*:: +/a/b/node_modules: + {} + exitCode:: ExitStatus.undefined //// [/a/b/foo.js] file written with same contents 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 aa69bbf5d9ddd..b46ceb0444e68 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,19 +49,17 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/a.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/a.js] @@ -78,6 +76,24 @@ export {} //// [/user/username/projects/myproject/node_modules2/@types/qqq/index.d.ts] deleted +PolledWatches *deleted*:: +/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:: +/user/username/projects/myproject/node_modules: *new* + {} +/user/username/projects/myproject/node_modules/@types: *new* + {} + Output:: sysLog:: /user/username/projects/myproject/node_modules:: Changing watcher to PresentFileSystemEntryWatcher sysLog:: /user/username/projects/myproject/node_modules/@types:: Changing watcher to PresentFileSystemEntryWatcher @@ -105,14 +121,12 @@ 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) -PolledWatches:: - FsWatches:: /user/username/projects/myproject/a.ts: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/node_modules/@types/qqq/index.d.ts: +/user/username/projects/myproject/node_modules/@types/qqq/index.d.ts: *new* {} FsWatchesRecursive:: 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 58d79da04f77c..931b845752552 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,29 +58,29 @@ Shape signatures in builder refreshed for:: /a/b/projects/myproject/src/file2.ts (used version) PolledWatches:: -/a/b/projects/myproject/src/node_modules: +/a/b/projects/myproject/src/node_modules: *new* {"pollingInterval":500} -/a/b/projects/myproject/src/node_modules/@types: +/a/b/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: +/a/b/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/projects/myproject/src/tsconfig.json: +/a/b/projects/myproject/src/tsconfig.json: *new* {} -/a/b/projects/myproject/src/file1.ts: +/a/b/projects/myproject/src/file1.ts: *new* {} -/a/b/projects/myproject/node_modules/module1/index.js: +/a/b/projects/myproject/node_modules/module1/index.js: *new* {} -/a/b/projects/myproject/src/file2.ts: +/a/b/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b/projects/myproject/node_modules: +/a/b/projects/myproject/node_modules: *new* {} -/a/b/projects/myproject/src: +/a/b/projects/myproject/src: *new* {} exitCode:: ExitStatus.undefined @@ -132,32 +132,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/b/projects/myproject/src/file1.ts (computed .d.ts) -PolledWatches:: -/a/b/projects/myproject/src/node_modules: - {"pollingInterval":500} -/a/b/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"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: - {} -/a/b/projects/myproject/src: - {} - exitCode:: ExitStatus.undefined //// [/a/b/projects/myProject/dist/file1.js] diff --git a/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js b/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js index c1ac8341e0189..639abb86b94bf 100644 --- a/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js +++ b/tests/baselines/reference/tscWatch/resolveJsonModule/incremental-always-prefers-declaration-file-over-document.js @@ -62,21 +62,21 @@ Shape signatures in builder refreshed for:: /src/project/main.ts (used version) PolledWatches:: -/src/project/node_modules/@types: +/src/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/src/project/tsconfig.json: +/src/project/tsconfig.json: *new* {} -/src/project/data.d.json.ts: +/src/project/data.d.json.ts: *new* {} -/src/project/main.ts: +/src/project/main.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/src/project: +/src/project: *new* {} exitCode:: ExitStatus.undefined @@ -190,6 +190,10 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/src/project/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /src/project/node_modules/@types: {"pollingInterval":500} 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 ac72068041915..7aa5cd4b98bfa 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks-when-solution-is-already-built.js index a33b627bf8cb2..500a62f952847 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-preserveSymlinks.js index 6d858282f0263..b6d64c7f099d0 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-when-solution-is-already-built.js index 18e856bfb60f3..2bcd32edaf446 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js index 7b57a87ccee76..09ca6cf357628 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package-with-preserveSymlinks.js index 06d7c89e69882..699125f3d3e4d 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field-with-scoped-package.js index b07426d188743..d348e6a9d6290 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-packageJson-has-types-field.js index 6db09e5793f95..6b21054ad6bab 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/index.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/index.ts: +/user/username/projects/myproject/packages/a/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-when-solution-is-already-built.js index dbd2fde906f15..7141e3916a7b9 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks-when-solution-is-already-built.js index 4ea3296cd716f..4a9ca06105d44 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-preserveSymlinks.js index 425bb4f81d62b..8a1d6f118985f 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-when-solution-is-already-built.js index 2a9b062cdcaa2..c749348db2889 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks-when-solution-is-already-built.js index de80763caae97..1a94e0f0c8260 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 @@ -243,39 +243,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/b/src/bar/foo.ts (used version) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package-with-preserveSymlinks.js index 39711aa61a5a6..0452908c55dcd 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder-with-scoped-package.js index 42a0bcd151d7a..94b2a62a2417b 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/when-referencing-file-from-subFolder.js index 9ed40a34e3a17..6b3aee0f07e24 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,39 +67,39 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/packages/a/src/test.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/a/src/test.ts: +/user/username/projects/myproject/packages/a/src/test.ts: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project-when-solution-is-already-built.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project-when-solution-is-already-built.js index 7d2e42ce6783f..10cc9d670b2c2 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 @@ -387,35 +387,35 @@ 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: +/user/username/projects/demo/animals/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/demo/node_modules/@types: +/user/username/projects/demo/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/demo/animals/tsconfig.json: +/user/username/projects/demo/animals/tsconfig.json: *new* {} -/user/username/projects/demo/core/tsconfig.json: +/user/username/projects/demo/core/tsconfig.json: *new* {} -/user/username/projects/demo/tsconfig-base.json: +/user/username/projects/demo/tsconfig-base.json: *new* {} -/user/username/projects/demo/animals/animal.ts: +/user/username/projects/demo/animals/animal.ts: *new* {} -/user/username/projects/demo/animals/dog.ts: +/user/username/projects/demo/animals/dog.ts: *new* {} -/user/username/projects/demo/animals: +/user/username/projects/demo/animals: *new* {} -/user/username/projects/demo/animals/index.ts: +/user/username/projects/demo/animals/index.ts: *new* {} -/user/username/projects/demo/core/utilities.ts: +/user/username/projects/demo/core/utilities.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/demo/core: +/user/username/projects/demo/core: *new* {} -/user/username/projects/demo/animals: +/user/username/projects/demo/animals: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js index 29c20c4a3122e..8cd92c438fee5 100644 --- a/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js +++ b/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/with-simple-project.js @@ -135,35 +135,35 @@ 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: +/user/username/projects/demo/animals/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/demo/node_modules/@types: +/user/username/projects/demo/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/demo/animals/tsconfig.json: +/user/username/projects/demo/animals/tsconfig.json: *new* {} -/user/username/projects/demo/core/tsconfig.json: +/user/username/projects/demo/core/tsconfig.json: *new* {} -/user/username/projects/demo/tsconfig-base.json: +/user/username/projects/demo/tsconfig-base.json: *new* {} -/user/username/projects/demo/animals/animal.ts: +/user/username/projects/demo/animals/animal.ts: *new* {} -/user/username/projects/demo/animals/dog.ts: +/user/username/projects/demo/animals/dog.ts: *new* {} -/user/username/projects/demo/animals: +/user/username/projects/demo/animals: *new* {} -/user/username/projects/demo/animals/index.ts: +/user/username/projects/demo/animals/index.ts: *new* {} -/user/username/projects/demo/core/utilities.ts: +/user/username/projects/demo/core/utilities.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/demo/core: +/user/username/projects/demo/core: *new* {} -/user/username/projects/demo/animals: +/user/username/projects/demo/animals: *new* {} exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js index c81b7fbc32d7d..afdaf5389ae80 100644 --- a/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js +++ b/tests/baselines/reference/tscWatch/watchApi/extraFileExtensions-are-supported.js @@ -50,21 +50,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.vue (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.vue: +/user/username/projects/myproject/other.vue: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -120,7 +120,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/other2.vue: +/user/username/projects/myproject/other2.vue: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js b/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js index 2e254df6748c1..cbb960dbecfc5 100644 --- a/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js +++ b/tests/baselines/reference/tscWatch/watchApi/host-implements-does-not-implement-hasInvalidatedResolutions.js @@ -68,21 +68,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.d.ts: +/user/username/projects/myproject/other.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] @@ -129,22 +127,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -192,22 +174,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/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.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] file written with same contents @@ -269,11 +235,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] file written with same contents diff --git a/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js b/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js index 0b6fdb190d72a..b47d4f3f14631 100644 --- a/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js +++ b/tests/baselines/reference/tscWatch/watchApi/host-implements-hasInvalidatedResolutions.js @@ -68,21 +68,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.d.ts: +/user/username/projects/myproject/other.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] @@ -103,22 +101,6 @@ Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/oth Synchronizing program -PolledWatches:: -/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.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -159,22 +141,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/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.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] file written with same contents @@ -236,11 +202,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] file written with same contents 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 c3e6ca176e783..9ccd101deeeb2 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -161,10 +161,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/main.ts: + {} *new* +/user/username/projects/myproject/other.ts: + {} *new* +/a/lib/lib.d.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/main.ts: @@ -175,6 +189,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject: {} @@ -275,6 +293,24 @@ export const x = 10; // SomeComment +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w --noEmit Output:: >> Screen clear @@ -299,21 +335,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -411,10 +447,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/main.ts: + {} *new* +/user/username/projects/myproject/other.ts: + {} *new* +/a/lib/lib.d.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/main.ts: @@ -425,6 +475,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject: {} @@ -512,6 +566,24 @@ export const x = 10; // SomeComment +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w Output:: >> Screen clear @@ -536,21 +608,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} 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 4f731e4932ad3..08658eab3489a 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -168,10 +168,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/main.ts: + {} *new* +/user/username/projects/myproject/other.ts: + {} *new* +/a/lib/lib.d.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/main.ts: @@ -182,6 +196,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject: {} @@ -289,6 +307,24 @@ export const x = 10; // SomeComment +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w --noEmit Output:: >> Screen clear @@ -313,21 +349,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -432,10 +468,24 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* + +PolledWatches *deleted*:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/main.ts: + {} *new* +/user/username/projects/myproject/other.ts: + {} *new* +/a/lib/lib.d.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/main.ts: @@ -446,6 +496,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject: {} @@ -540,6 +594,24 @@ export const x = 10; // SomeComment +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w Output:: >> Screen clear @@ -564,21 +636,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} 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 726e96abddfca..1c4a270da5bf5 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,21 +55,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -165,6 +165,24 @@ export const x: string = 10; // SomeComment +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w Output:: >> Screen clear @@ -194,21 +212,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -307,6 +325,24 @@ Input:: export const x = 10; +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w Output:: >> Screen clear @@ -331,21 +367,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} 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 742f40032693a..24f5917592e31 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,21 +55,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -172,6 +172,24 @@ export const x: string = 10; // SomeComment +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w Output:: >> Screen clear @@ -201,21 +219,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -321,6 +339,24 @@ Input:: export const x = 10; +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + tsc --w Output:: >> Screen clear @@ -345,21 +381,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} 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 2775e9b72ffb7..1699132726fa7 100644 --- a/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js +++ b/tests/baselines/reference/tscWatch/watchApi/semantic-builder-emitOnlyDts.js @@ -55,21 +55,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -164,6 +164,24 @@ Input:: export const x = 10; +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/main.ts: + {} +/user/username/projects/myproject/other.ts: + {} +/a/lib/lib.d.ts: + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject: + {} + Output:: >> Screen clear [12:00:32 AM] Starting compilation in watch mode... @@ -187,21 +205,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} 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 e9fe78cc48747..ed5a72e4a2cb8 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,21 +50,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/other.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/user/username/projects/myproject/other.ts: +/user/username/projects/myproject/other.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -100,23 +100,5 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/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: - {} - 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 6621e1a908261..7159b4b855822 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,21 +60,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/index.ts: +/user/username/projects/myproject/index.ts: *new* {} -/user/username/projects/myproject/settings.json: +/user/username/projects/myproject/settings.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/index.js] 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 68389de695fa9..b3c280e74aeb7 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,19 +59,17 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/index.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/index.ts: +/user/username/projects/myproject/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/index.js] diff --git a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js index eabd47603c0de..56ecda18ac056 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles-with-outFile.js @@ -59,21 +59,19 @@ No cached semantic diagnostics in the builder:: No shapes updated in the builder:: PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -108,22 +106,6 @@ 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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/outFile.d.ts] @@ -223,22 +205,6 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined @@ -365,22 +331,6 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined @@ -394,22 +344,6 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined @@ -423,21 +357,5 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js index 6b202da7c884f..c9f6590d313ae 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-emitting-with-emitOnlyDtsFiles.js @@ -65,21 +65,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/b.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/a.ts: +/user/username/projects/myproject/a.ts: *new* {} -/user/username/projects/myproject/b.ts: +/user/username/projects/myproject/b.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -199,22 +197,6 @@ Semantic diagnostics in builder refreshed for:: 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: - {} -/user/username/projects/myproject/a.ts: - {} -/user/username/projects/myproject/b.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/tsconfig.tsbuildinfo] @@ -316,22 +298,6 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined @@ -429,22 +395,6 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined @@ -458,22 +408,6 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined @@ -487,21 +421,5 @@ Program: Same as old program BuilderProgram: Same as old builder program -PolledWatches:: -/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:: - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine-without-implementing-useSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine-without-implementing-useSourceOfProjectReferenceRedirect.js index 2f65966527bc5..63dfd95d71692 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,29 +77,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/projects/node_modules/@types: +/user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/class1.d.ts: +/user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project2/class2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project1: +/user/username/projects/myproject/projects/project1: *new* {} -/user/username/projects/myproject/projects/project2: +/user/username/projects/myproject/projects/project2: *new* {} exitCode:: ExitStatus.undefined @@ -232,7 +232,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -263,6 +263,36 @@ Input:: declare class class3 {} +PolledWatches:: +/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} + +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"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: + {} +/user/username/projects/myproject/projects/project2: + {} + Output:: FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file @@ -322,7 +352,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: @@ -424,34 +454,6 @@ 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 -PolledWatches:: -/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} - -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: - {} -/user/username/projects/myproject/projects/project2: - {} - exitCode:: ExitStatus.undefined @@ -512,7 +514,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -527,6 +529,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} @@ -604,6 +610,36 @@ Input:: declare class class3 {} +PolledWatches:: +/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} + +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"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: + {} +/user/username/projects/myproject/projects/project2: + {} + Output:: FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Missing file @@ -663,7 +699,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine.js b/tests/baselines/reference/tscWatch/watchApi/when-new-file-is-added-to-the-referenced-project-with-host-implementing-getParsedCommandLine.js index 4cc4ca07ad391..4c557e511e559 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,29 +77,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/projects/project2/class2.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/projects/node_modules/@types: +/user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/class1.ts: +/user/username/projects/myproject/projects/project1/class1.ts: *new* {} -/user/username/projects/myproject/projects/project2/class2.ts: +/user/username/projects/myproject/projects/project2/class2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project1: +/user/username/projects/myproject/projects/project1: *new* {} -/user/username/projects/myproject/projects/project2: +/user/username/projects/myproject/projects/project2: *new* {} exitCode:: ExitStatus.undefined @@ -243,7 +243,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.ts: +/user/username/projects/myproject/projects/project1/class3.ts: *new* {} FsWatchesRecursive:: @@ -347,34 +347,6 @@ 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 -PolledWatches:: -/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} - -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: - {} -/user/username/projects/myproject/projects/project2: - {} - exitCode:: ExitStatus.undefined @@ -391,33 +363,5 @@ 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 -PolledWatches:: -/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} - -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: - {} -/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 8ff06d45408be..d31116840b2c9 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,19 +44,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -106,7 +106,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/bar.ts: +/user/username/projects/myproject/bar.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js b/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js index 777e659658064..09e1a01461f02 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/fsEvent-for-change-is-repeated.js @@ -49,17 +49,15 @@ Shape signatures in builder refreshed for:: /user/username/projects/project/main.ts (used version) PolledWatches:: -/user/username/projects/project/node_modules/@types: +/user/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/project/main.ts: +/user/username/projects/project/main.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/project/main.js] @@ -102,18 +100,6 @@ main.ts Shape signatures in builder refreshed for:: /user/username/projects/project/main.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/main.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/project/main.js] @@ -132,18 +118,6 @@ Elapsed:: *ms FileWatcher:: Triggered with main.ts 1:: WatchInfo: main.ts 250 un Synchronizing program -PolledWatches:: -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/main.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -181,18 +155,6 @@ main.ts Shape signatures in builder refreshed for:: /user/username/projects/project/main.ts (used version) -PolledWatches:: -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/main.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/project/main.js] @@ -210,17 +172,5 @@ Elapsed:: *ms FileWatcher:: Triggered with main.ts 1:: WatchInfo: main.ts 250 un Synchronizing program -PolledWatches:: -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/main.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - 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 19d38ce2f919e..703e9b977b443 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 @@ -64,23 +64,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {"inode":10} -/user/username/projects/myproject/foo.d.ts: +/user/username/projects/myproject/foo.d.ts: *new* {"inode":9} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {"inode":8} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {"inode":7} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"inode":3} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] Inode:: 11 @@ -98,6 +96,26 @@ Input:: export function foo2(): string; +PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {"inode":10} +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject: + {"inode":7} +/a/lib/lib.d.ts: + {"inode":3} +/user/username/projects/myproject/foo.d.ts: + {"inode":12} *new* + +FsWatches *deleted*:: +/user/username/projects/myproject/foo.d.ts: + {"inode":9} + Output:: FileWatcher:: Triggered with /user/username/projects/myproject/foo.d.ts 2:: WatchInfo: /user/username/projects/myproject/foo.d.ts 250 {"watchFile":4} Source file Scheduling update @@ -163,6 +181,17 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) +exitCode:: ExitStatus.undefined + +//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 11 + +Change:: Replace file with rename event that fixes error + +Input:: +//// [/user/username/projects/myproject/foo.d.ts] Inode:: 13 +export function foo(): string; + + PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -177,20 +206,11 @@ FsWatches:: /a/lib/lib.d.ts: {"inode":3} /user/username/projects/myproject/foo.d.ts: - {"inode":12} - -FsWatchesRecursive:: - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 11 - -Change:: Replace file with rename event that fixes error - -Input:: -//// [/user/username/projects/myproject/foo.d.ts] Inode:: 13 -export function foo(): string; + {"inode":13} *new* +FsWatches *deleted*:: +/user/username/projects/myproject/foo.d.ts: + {"inode":12} Output:: FileWatcher:: Triggered with /user/username/projects/myproject/foo.d.ts 2:: WatchInfo: /user/username/projects/myproject/foo.d.ts 250 {"watchFile":4} Source file @@ -247,24 +267,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} -/user/username/projects/myproject: - {"inode":7} -/a/lib/lib.d.ts: - {"inode":3} -/user/username/projects/myproject/foo.d.ts: - {"inode":13} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 11 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 bbf17baf303fb..5336e271ae652 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 @@ -60,21 +60,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {"inode":10} -/user/username/projects/myproject/foo.ts: +/user/username/projects/myproject/foo.ts: *new* {"inode":9} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {"inode":8} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"inode":3} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/foo.js] Inode:: 11 @@ -97,6 +95,24 @@ Input:: export declare function foo2(): string; +PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {"inode":10} +/user/username/projects/myproject/main.ts: + {"inode":8} +/a/lib/lib.d.ts: + {"inode":3} +/user/username/projects/myproject/foo.ts: + {"inode":13} *new* + +FsWatches *deleted*:: +/user/username/projects/myproject/foo.ts: + {"inode":9} + Output:: FileWatcher:: Triggered with /user/username/projects/myproject/foo.ts 0:: WatchInfo: /user/username/projects/myproject/foo.ts 250 {"watchFile":4} Source file Scheduling update @@ -138,6 +154,18 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) +exitCode:: ExitStatus.undefined + +//// [/user/username/projects/myproject/foo.js] file written with same contents Inode:: 11 +//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 12 + +Change:: Replace file with rename event that fixes error + +Input:: +//// [/user/username/projects/myproject/foo.ts] Inode:: 14 +export declare function foo(): string; + + PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -150,21 +178,11 @@ FsWatches:: /a/lib/lib.d.ts: {"inode":3} /user/username/projects/myproject/foo.ts: - {"inode":13} - -FsWatchesRecursive:: - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/foo.js] file written with same contents Inode:: 11 -//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 12 - -Change:: Replace file with rename event that fixes error - -Input:: -//// [/user/username/projects/myproject/foo.ts] Inode:: 14 -export declare function foo(): string; + {"inode":14} *new* +FsWatches *deleted*:: +/user/username/projects/myproject/foo.ts: + {"inode":13} Output:: FileWatcher:: Triggered with /user/username/projects/myproject/foo.ts 2:: WatchInfo: /user/username/projects/myproject/foo.ts 250 {"watchFile":4} Source file @@ -205,22 +223,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} -/a/lib/lib.d.ts: - {"inode":3} -/user/username/projects/myproject/foo.ts: - {"inode":14} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/foo.js] file written with same contents Inode:: 11 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 93ef3f477d1e0..f7be4f2d7f079 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 @@ -64,23 +64,21 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {"inode":10} -/user/username/projects/myproject/foo.d.ts: +/user/username/projects/myproject/foo.d.ts: *new* {"inode":9} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {"inode":8} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {"inode":7} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"inode":3} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] Inode:: 11 @@ -98,6 +96,26 @@ Input:: export function foo2(): string; +PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/user/username/projects/myproject/tsconfig.json: + {"inode":10} +/user/username/projects/myproject/main.ts: + {"inode":8} +/user/username/projects/myproject: + {"inode":7} +/a/lib/lib.d.ts: + {"inode":3} +/user/username/projects/myproject/foo.d.ts: + {"inode":12} *new* + +FsWatches *deleted*:: +/user/username/projects/myproject/foo.d.ts: + {"inode":9} + Output:: FileWatcher:: Triggered with /user/username/projects/myproject/foo.d.ts 2:: WatchInfo: /user/username/projects/myproject/foo.d.ts 250 {"watchFile":4} Source file Scheduling update @@ -153,6 +171,17 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) +exitCode:: ExitStatus.undefined + +//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 11 + +Change:: Replace file with rename event that fixes error + +Input:: +//// [/user/username/projects/myproject/foo.d.ts] Inode:: 13 +export function foo(): string; + + PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -167,20 +196,11 @@ FsWatches:: /a/lib/lib.d.ts: {"inode":3} /user/username/projects/myproject/foo.d.ts: - {"inode":12} - -FsWatchesRecursive:: - -exitCode:: ExitStatus.undefined - -//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 11 - -Change:: Replace file with rename event that fixes error - -Input:: -//// [/user/username/projects/myproject/foo.d.ts] Inode:: 13 -export function foo(): string; + {"inode":13} *new* +FsWatches *deleted*:: +/user/username/projects/myproject/foo.d.ts: + {"inode":12} Output:: FileWatcher:: Triggered with /user/username/projects/myproject/foo.d.ts 2:: WatchInfo: /user/username/projects/myproject/foo.d.ts 250 {"watchFile":4} Source file @@ -227,24 +247,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.d.ts (used version) /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {"inode":10} -/user/username/projects/myproject/main.ts: - {"inode":8} -/user/username/projects/myproject: - {"inode":7} -/a/lib/lib.d.ts: - {"inode":3} -/user/username/projects/myproject/foo.d.ts: - {"inode":13} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 11 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 a3f511fdab6f0..e846d31ade298 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 @@ -60,21 +60,19 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/foo.ts: +/user/username/projects/myproject/foo.ts: *new* {} -/user/username/projects/myproject/main.ts: +/user/username/projects/myproject/main.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/foo.js] @@ -137,22 +135,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/foo.ts: - {} -/user/username/projects/myproject/main.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/foo.js] file written with same contents @@ -198,22 +180,6 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/foo.ts (computed .d.ts) /user/username/projects/myproject/main.ts (computed .d.ts) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/foo.ts: - {} -/user/username/projects/myproject/main.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/foo.js] file written with same contents 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 e4a5d0a60779a..b08c08538dc47 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,18 +43,14 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/username/project/src/file1.ts (used version) -PolledWatches:: - FsWatches:: -/a/username/project/tsconfig.json: +/a/username/project/tsconfig.json: *new* {} -/a/username/project/src/file1.ts: +/a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/username/project/src/file1.js] @@ -90,17 +86,17 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/username/project/src/file2.ts (used version) -PolledWatches:: - FsWatches:: /a/username/project/tsconfig.json: {} /a/lib/lib.d.ts: {} -/a/username/project/src/file2.ts: +/a/username/project/src/file2.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/username/project/src/file1.ts: + {} exitCode:: ExitStatus.undefined 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 e1d49a0b01dce..04b22424ce2b5 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,23 +44,21 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file1.ts (used version) PolledWatches:: -/a/username/project/node_modules/@types: +/a/username/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: +/a/username/project/tsconfig.json: *new* {} -/a/username/project/src/file1.ts: +/a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/a/username/project: +/a/username/project: *new* {} -/a/username/project/src: +/a/username/project/src: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/username/project/src/file1.js] @@ -109,10 +107,12 @@ FsWatches:: {} /a/username/project/src: {} -/a/username/project/src/file2.ts: +/a/username/project/src/file2.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/username/project/src/file1.ts: + {} exitCode:: ExitStatus.undefined 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 8c7ecc82568a6..cda67fda1293a 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,23 +44,21 @@ Shape signatures in builder refreshed for:: /a/username/project/src/file1.ts (used version) PolledWatches:: -/a/username/project/node_modules/@types: +/a/username/project/node_modules/@types: *new* {"pollingInterval":500} -/a/username/project: +/a/username/project: *new* {"pollingInterval":500} -/a/username/project/src: +/a/username/project/src: *new* {"pollingInterval":500} FsWatches:: -/a/username/project/tsconfig.json: +/a/username/project/tsconfig.json: *new* {} -/a/username/project/src/file1.ts: +/a/username/project/src/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/username/project/src/file1.js] @@ -109,10 +107,12 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/username/project/src/file2.ts: +/a/username/project/src/file2.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/username/project/src/file1.ts: + {} exitCode:: ExitStatus.undefined 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 37d0cb8478d0e..d10d802ee11ca 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,35 +86,33 @@ Shape signatures in builder refreshed for:: /home/user/projects/myproject/src/file.ts (used version) PolledWatches:: -/home/user/projects/myproject/node_modules/@types: +/home/user/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/home/user/projects/myproject/tsconfig.json: +/home/user/projects/myproject/tsconfig.json: *new* {} -/home/user/projects/myproject/src/file.ts: +/home/user/projects/myproject/src/file.ts: *new* {} -/home/user/projects/myproject/node_modules/reala/index.d.ts: +/home/user/projects/myproject/node_modules/reala/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/home/user/projects/myproject/src: +/home/user/projects/myproject/src: *new* {} -/home/user/projects/myproject/node_modules: +/home/user/projects/myproject/node_modules: *new* {} -/home/user/projects/myproject/node_modules/reala: +/home/user/projects/myproject/node_modules/reala: *new* {} -/home/user/projects/myproject/node_modules/reala/node_modules: +/home/user/projects/myproject/node_modules/reala/node_modules: *new* {} -/home/user/projects/myproject/node_modules/realb: +/home/user/projects/myproject/node_modules/realb: *new* {} -/home/user/projects/myproject/node_modules/realb/node_modules: +/home/user/projects/myproject/node_modules/realb/node_modules: *new* {} -/home/user/projects/myproject: +/home/user/projects/myproject: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/home/user/projects/myproject/src/file.js] 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 02730dd0756f6..880cedff456b0 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,27 +50,25 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/file1.ts: +/user/username/projects/myproject/src/file1.ts: *new* {} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/dist: +/user/username/projects/myproject/dist: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/dist/file2.js] @@ -92,28 +90,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject/src: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -153,7 +129,7 @@ Shape signatures in builder refreshed for:: PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/file2.ts: +/user/username/projects/myproject/src/file2.ts: *new* {"pollingInterval":500} FsWatches:: @@ -170,7 +146,9 @@ FsWatches:: /user/username/projects/myproject/src: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/user/username/projects/myproject/src/file2.ts: + {} exitCode:: ExitStatus.undefined @@ -212,6 +190,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/src/file2.ts: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -225,11 +207,9 @@ FsWatches:: {} /user/username/projects/myproject/src: {} -/user/username/projects/myproject/src/renamed.ts: +/user/username/projects/myproject/src/renamed.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/dist/renamed.js] 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 63027d7250d9a..c2dca1a228806 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,31 +50,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (computed .d.ts during emit) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/file1.ts: +/user/username/projects/myproject/src/file1.ts: *new* {} -/user/username/projects/myproject/node_modules/file2/index.d.ts: +/user/username/projects/myproject/node_modules/file2/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/node_modules/file2: +/user/username/projects/myproject/node_modules/file2: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/dist: +/user/username/projects/myproject/dist: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/dist/file1.js] @@ -93,32 +91,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject/node_modules/file2: - {} -/user/username/projects/myproject: - {} -/user/username/projects/myproject/dist: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -131,32 +103,6 @@ export const y = 10; Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject/node_modules/file2: - {} -/user/username/projects/myproject: - {} -/user/username/projects/myproject/dist: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -210,11 +156,9 @@ FsWatches:: {} /user/username/projects/myproject/dist: {} -/user/username/projects/myproject/src/file3.ts: +/user/username/projects/myproject/src/file3.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/dist/file3.js] @@ -235,34 +179,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject/node_modules/file2: - {} -/user/username/projects/myproject: - {} -/user/username/projects/myproject/dist: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -272,33 +188,5 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject/node_modules/file2: - {} -/user/username/projects/myproject: - {} -/user/username/projects/myproject/dist: - {} -/user/username/projects/myproject/src/file3.ts: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/with-non-synchronous-watch-directory.js index 9d685a8de0268..237bd67b8bde2 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,29 +50,27 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/file1.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/file1.ts: +/user/username/projects/myproject/src/file1.ts: *new* {} -/user/username/projects/myproject/node_modules/file2/index.d.ts: +/user/username/projects/myproject/node_modules/file2/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/node_modules/file2: +/user/username/projects/myproject/node_modules/file2: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/src/file1.js] @@ -87,6 +85,14 @@ Input:: Output:: +exitCode:: ExitStatus.undefined + + +Change:: Remove directory node_modules + +Input:: +//// [/user/username/projects/myproject/node_modules/file2/index.d.ts] deleted + PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} @@ -104,20 +110,12 @@ FsWatches:: {} /user/username/projects/myproject/node_modules: {} -/user/username/projects/myproject/node_modules/file2: - {} /user/username/projects/myproject: {} -FsWatchesRecursive:: - -exitCode:: ExitStatus.undefined - - -Change:: Remove directory node_modules - -Input:: -//// [/user/username/projects/myproject/node_modules/file2/index.d.ts] deleted +FsWatches *deleted*:: +/user/username/projects/myproject/node_modules/file2: + {} Output:: >> Screen clear @@ -163,7 +161,9 @@ FsWatches:: /user/username/projects/myproject: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/user/username/projects/myproject/node_modules/file2/index.d.ts: + {} exitCode:: ExitStatus.undefined @@ -197,26 +197,6 @@ Semantic diagnostics in builder refreshed for:: No shapes updated in the builder:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -226,26 +206,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -255,26 +215,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -287,26 +227,6 @@ export const x = 10; Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -333,11 +253,9 @@ FsWatches:: {} /user/username/projects/myproject: {} -/user/username/projects/myproject/node_modules/file2: +/user/username/projects/myproject/node_modules/file2: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -347,28 +265,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject: - {} -/user/username/projects/myproject/node_modules/file2: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -419,11 +315,9 @@ FsWatches:: {} /user/username/projects/myproject/node_modules/file2: {} -/user/username/projects/myproject/node_modules/file2/index.d.ts: +/user/username/projects/myproject/node_modules/file2/index.d.ts: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/src/file1.js] file written with same contents 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 a951b5c646263..814120cad9b70 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,12 +40,6 @@ Shape signatures in builder refreshed for:: /a/lib/lib.d.ts (used version) /a/username/project/typescript.ts (used version) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/username/project/typescript.js] @@ -59,12 +53,6 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -77,12 +65,6 @@ var zz30 = 100; Output:: -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -112,12 +94,6 @@ Semantic diagnostics in builder refreshed for:: Shape signatures in builder refreshed for:: /a/username/project/typescript.ts (computed .d.ts) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/username/project/typescript.js] @@ -131,11 +107,5 @@ Input:: Output:: -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - 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 4ba506d930a7e..f968211162be5 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 @@ -50,13 +50,11 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: - FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined @@ -76,16 +74,6 @@ Input:: Output:: -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined @@ -98,16 +86,6 @@ var zz30 = 100; Output:: -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined @@ -140,16 +118,6 @@ Shape signatures in builder refreshed for:: /a/b/commonfile1.ts (computed .d.ts) /a/b/commonfile2.ts (computed .d.ts) -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: -/a/b: - {} - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] @@ -164,15 +132,5 @@ Input:: Output:: -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: -/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 694ff4f5355e5..fb73f14e54261 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,24 +78,22 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/index.d.ts: +/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: +/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -115,25 +113,5 @@ Input:: Output:: -PolledWatches:: - -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/bar/foo.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 947349509e68f..223a329073ff2 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,31 +79,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/index.d.ts: +/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/node_modules/bar: +/user/username/projects/myproject/node_modules/bar: *new* {} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: +/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/src/main.js] @@ -129,32 +127,6 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec sysLog:: Elapsed:: *ms:: onTimerToUpdateChildWatches:: 0 undefined -PolledWatches:: -/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: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -167,31 +139,5 @@ export function temp(): string; Output:: -PolledWatches:: -/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: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching.js index 82b76ab74393c..5d9aab11a7864 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,31 +62,29 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/index.d.ts: +/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/node_modules/bar: +/user/username/projects/myproject/node_modules/bar: *new* {} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: +/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/user/username/projects/myproject/src/main.js] @@ -103,32 +101,6 @@ Input:: Output:: -PolledWatches:: -/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: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined @@ -141,31 +113,5 @@ export function temp(): string; Output:: -PolledWatches:: -/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: - {} - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js index 0f44aeb54b09f..869dc5b63acc3 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option.js @@ -61,24 +61,22 @@ 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) -PolledWatches:: - FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/index.d.ts: +/user/username/projects/myproject/node_modules/bar/index.d.ts: *new* {} -/user/username/projects/myproject/node_modules/bar/foo.d.ts: +/user/username/projects/myproject/node_modules/bar/foo.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -98,25 +96,5 @@ Input:: Output:: -PolledWatches:: - -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/bar/foo.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/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 35c610866849b..1a1d67e064af8 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,23 +81,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -119,25 +119,5 @@ export function fooBar(): string; Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject/src: - {} -/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 aee4e0008320f..417a6c479b856 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option.js @@ -62,23 +62,23 @@ Shape signatures in builder refreshed for:: /user/username/projects/myproject/src/main.ts (used version) PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} exitCode:: ExitStatus.undefined @@ -100,25 +100,5 @@ export function fooBar(): string; Output:: -PolledWatches:: -/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: - {} -/user/username/projects/myproject/src: - {} -/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 20539cfbb1075..a679949a934c2 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-fallbackPolling-option.js @@ -55,23 +55,19 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {"pollingInterval":250} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {"pollingInterval":250} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":250} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} -/a/b: +/a/b: *new* {"pollingInterval":500} -FsWatches:: - -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] 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 5a6e77e0dd0e7..d91e319d3e0da 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchDirectory-option.js @@ -50,23 +50,21 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/a/b: +/a/b: *new* {} -FsWatchesRecursive:: - exitCode:: ExitStatus.undefined //// [/a/b/commonFile1.js] 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 d03484ff65816..c91aacfb598c1 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 @@ -50,21 +50,21 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} 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 170e83992a69b..029a363d15680 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-watchFile-option.js @@ -50,21 +50,21 @@ Shape signatures in builder refreshed for:: /a/b/commonfile2.ts (used version) PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/commonfile1.ts: +/a/b/commonfile1.ts: *new* {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} exitCode:: ExitStatus.undefined 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 ee713d66ef644..fab610afb971d 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 @@ -4,12 +4,6 @@ Creating project service import {y} from "bar" -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:08.000] Search path: /c Info 2 [00:00:09.000] For info: /c/foo.ts :: No config files found. Info 3 [00:00:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -53,34 +47,20 @@ export var y = 1 PolledWatches:: -/c/node_modules: +/c/node_modules: *new* {"pollingInterval":500} -/c/node_modules/@types: +/c/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/c: +/c: *new* {} -FsWatchesRecursive:: - Info 24 [00:00:39.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation Info 25 [00:00:40.000] Scheduled: /dev/null/inferredProject1* Info 26 [00:00:41.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/c/node_modules: - {"pollingInterval":500} -/c/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/c: - {} - -FsWatchesRecursive:: - Info 27 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 28 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /c/bar.d.ts 500 undefined WatchType: Closed Script info Info 29 [00:00:44.000] DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js index 0656bf70d9902..6b64b1bc04e51 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js @@ -44,12 +44,6 @@ interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:28.000] Search path: /user/username/rootfolder/otherfolder/a/b Info 2 [00:00:29.000] For info: /user/username/rootfolder/otherfolder/a/b/app.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 3 [00:00:30.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/tsconfig.json @@ -534,27 +528,27 @@ exports['default'] = result; PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: +/user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: +/user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: +/user/username/rootfolder/otherfolder/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: +/user/username/rootfolder/otherfolder/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: +/user/username/rootfolder/otherfolder/a/b: *new* {} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} Info 113 [00:03:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations @@ -638,30 +632,6 @@ module.exports = require('./lodash'); -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 143 [00:03:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 144 [00:03:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 145 [00:03:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -670,30 +640,6 @@ Info 147 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/u Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594] deleted -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 148 [00:04:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 149 [00:04:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 150 [00:04:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -746,30 +692,6 @@ declare namespace _ { } -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 183 [00:05:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 184 [00:05:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 185 [00:05:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -1028,30 +950,6 @@ Checking timeout queue length: 3 -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 208 [00:05:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 209 [00:05:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 210 [00:05:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -1132,6 +1030,10 @@ PolledWatches:: /user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/tsconfig.json: {} @@ -1143,7 +1045,7 @@ FsWatchesRecursive:: {} /user/username/rootfolder/otherfolder/a/b/node_modules: {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types: *new* {} Info 275 [00:07:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations @@ -1885,85 +1787,13 @@ declare namespace _ { //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js] deleted //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts] deleted -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Info 595 [00:13:58.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation Info 596 [00:13:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one Info 597 [00:14:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Info 598 [00:14:01.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 599 [00:14:02.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 600 [00:14:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache @@ -2016,14 +1846,20 @@ PolledWatches:: /user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/node_modules: + {"pollingInterval":500} +/user/username/rootfolder/otherfolder/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/tsconfig.json: {} /a/lib/lib.d.ts: {} -/user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json: +/user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json: *new* {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js index 6e35239f7206c..4f686269c6525 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js @@ -44,12 +44,6 @@ interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:28.000] Search path: /user/username/rootfolder/otherfolder/a/b Info 2 [00:00:29.000] For info: /user/username/rootfolder/otherfolder/a/b/app.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 3 [00:00:30.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/tsconfig.json @@ -534,27 +528,27 @@ exports['default'] = result; PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: +/user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: +/user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: +/user/username/rootfolder/otherfolder/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: +/user/username/rootfolder/otherfolder/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: +/user/username/rootfolder/otherfolder/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: +/user/username/rootfolder/otherfolder/a/b: *new* {} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} Info 113 [00:02:58.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation @@ -562,56 +556,8 @@ Info 114 [00:02:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/ts Info 115 [00:03:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 116 [00:03:01.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 117 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 118 [00:03:03.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms @@ -635,30 +581,6 @@ Info 123 [00:03:18.000] FileName: /user/username/rootfolder/otherfolder/a/b/ap Info 123 [00:03:19.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 123 [00:03:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 124 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 125 [00:03:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -740,56 +662,8 @@ module.exports = require('./lodash'); -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 153 [00:04:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 154 [00:04:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 155 [00:04:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -798,56 +672,8 @@ Info 157 [00:04:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/u Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594] deleted -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 158 [00:04:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 159 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 160 [00:04:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -900,56 +726,8 @@ declare namespace _ { } -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 193 [00:05:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 194 [00:05:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 195 [00:05:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -1208,56 +986,8 @@ Before checking timeout queue length (0) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 218 [00:06:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 219 [00:06:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 220 [00:06:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -1338,6 +1068,10 @@ PolledWatches:: /user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/tsconfig.json: {} @@ -1349,7 +1083,7 @@ FsWatchesRecursive:: {} /user/username/rootfolder/otherfolder/a/b/node_modules: {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types: *new* {} Info 285 [00:07:39.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation @@ -1357,56 +1091,8 @@ Info 286 [00:07:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/ts Info 287 [00:07:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Info 288 [00:07:42.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 289 [00:07:43.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 290 [00:07:44.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms @@ -1430,30 +1116,6 @@ Info 295 [00:07:59.000] FileName: /user/username/rootfolder/otherfolder/a/b/ap Info 295 [00:08:00.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Info 295 [00:08:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 296 [00:08:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations Info 297 [00:08:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory @@ -2193,85 +1855,13 @@ declare namespace _ { //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js] deleted //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts] deleted -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Info 615 [00:14:42.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation Info 616 [00:14:43.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one Info 617 [00:14:44.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules/@types: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types: - {} - Info 618 [00:14:45.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 619 [00:14:46.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Info 620 [00:14:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache @@ -2324,14 +1914,20 @@ PolledWatches:: /user/username/rootfolder/otherfolder/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/node_modules: + {"pollingInterval":500} +/user/username/rootfolder/otherfolder/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/tsconfig.json: {} /a/lib/lib.d.ts: {} -/user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json: +/user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json: *new* {} -/user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json: +/user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json: *new* {} FsWatchesRecursive:: 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 802443c20a962..d0cd526a310dc 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 @@ -23,12 +23,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"strict":true,"strictNullChecks":true,"target":"es2016","module":"commonjs","moduleResolution":"node","sourceMap":true,"noEmitOnError":true,"experimentalDecorators":true,"emitDecoratorMetadata":true,"types":["node","jest"],"noUnusedLocals":true,"outDir":"./compiled","typeRoots":["types","node_modules/@types"],"baseUrl":".","paths":{"*":["types/*"]}},"include":["src/**/*"],"exclude":["node_modules","compiled"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils Info 2 [00:00:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/tsconfig.json @@ -112,23 +106,23 @@ export class Cookie { } PolledWatches:: -/users/someuser/work/applications/frontend/types: +/users/someuser/work/applications/frontend/types: *new* {"pollingInterval":500} -/users/someuser/work/applications/frontend/node_modules: +/users/someuser/work/applications/frontend/node_modules: *new* {"pollingInterval":500} -/users/someuser/work/applications/node_modules: +/users/someuser/work/applications/node_modules: *new* {"pollingInterval":500} FsWatches:: -/users/someuser/work/applications/frontend/tsconfig.json: +/users/someuser/work/applications/frontend/tsconfig.json: *new* {} -/users/someuser/work/applications/frontend/src/app/redux/configurestore.ts: +/users/someuser/work/applications/frontend/src/app/redux/configurestore.ts: *new* {} -/a/lib/lib.es2016.full.d.ts: +/a/lib/lib.es2016.full.d.ts: *new* {} FsWatchesRecursive:: -/users/someuser/work/applications/frontend/src: +/users/someuser/work/applications/frontend/src: *new* {} Info 25 [00:01:06.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json @@ -187,7 +181,7 @@ FsWatches:: {} /a/lib/lib.es2016.full.d.ts: {} -/users/someuser/work/applications/frontend/src/app/utils/cookie.ts: +/users/someuser/work/applications/frontend/src/app/utils/cookie.ts: *new* {} FsWatchesRecursive:: 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 60c410090a674..98f7889eff735 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 @@ -23,12 +23,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"strict":true,"strictNullChecks":true,"target":"es2016","module":"commonjs","moduleResolution":"node","sourceMap":true,"noEmitOnError":true,"experimentalDecorators":true,"emitDecoratorMetadata":true,"types":["node","jest"],"noUnusedLocals":true,"outDir":"./compiled","typeRoots":["types","node_modules/@types"],"baseUrl":".","paths":{"*":["types/*"]}},"include":["src/**/*"],"exclude":["node_modules","compiled"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils Info 2 [00:00:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/tsconfig.json @@ -112,23 +106,23 @@ export class Cookie { } PolledWatches:: -/Users/someuser/work/applications/frontend/types: +/Users/someuser/work/applications/frontend/types: *new* {"pollingInterval":500} -/Users/someuser/work/applications/frontend/node_modules: +/Users/someuser/work/applications/frontend/node_modules: *new* {"pollingInterval":500} -/Users/someuser/work/applications/node_modules: +/Users/someuser/work/applications/node_modules: *new* {"pollingInterval":500} FsWatches:: -/Users/someuser/work/applications/frontend/tsconfig.json: +/Users/someuser/work/applications/frontend/tsconfig.json: *new* {} -/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts: +/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts: *new* {} -/a/lib/lib.es2016.full.d.ts: +/a/lib/lib.es2016.full.d.ts: *new* {} FsWatchesRecursive:: -/Users/someuser/work/applications/frontend/src: +/Users/someuser/work/applications/frontend/src: *new* {} Info 25 [00:01:06.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json @@ -187,7 +181,7 @@ FsWatches:: {} /a/lib/lib.es2016.full.d.ts: {} -/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts: +/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js index d9ed7c5e3ccda..eeba7920ea81a 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js @@ -28,12 +28,6 @@ export class Bookshelf { } {"compilerOptions":{"target":"es6","module":"es6","baseUrl":"./","paths":{"~/*":["*"]}},"exclude":["api","build","node_modules","public","seeds","sql_updates","tests.build"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /a/b/controllers/vessels Info 3 [00:00:26.000] For info: /a/b/controllers/vessels/client.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json @@ -93,21 +87,21 @@ Info 19 [00:00:47.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/lib/lib.es6.d.ts: +/a/lib/lib.es6.d.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/models/vessel.ts: +/a/b/models/vessel.ts: *new* {} -/a/b/utils/db.ts: +/a/b/utils/db.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 19 [00:00:48.000] response: @@ -126,44 +120,8 @@ Info 20 [00:00:49.000] request: } Before request -PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/models/vessel.ts: - {} -/a/b/utils/db.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/models/vessel.ts: - {} -/a/b/utils/db.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 21 [00:00:50.000] response: { "response": [ @@ -197,24 +155,6 @@ Info 27 [00:00:56.000] request: } Before request -PolledWatches:: -/a/lib/lib.es6.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/models/vessel.ts: - {} -/a/b/utils/db.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 28 [00:00:57.000] FileWatcher:: Close:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info Info 29 [00:00:58.000] Search path: /a/b/models Info 30 [00:00:59.000] For info: /a/b/models/vessel.ts :: Config file name: /a/b/tsconfig.json @@ -241,6 +181,10 @@ FsWatches:: /a/b/utils/db.ts: {} +FsWatches *deleted*:: +/a/b/models/vessel.ts: + {} + FsWatchesRecursive:: /a/b: {} diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js index b48d6b9859d5d..27bb7e69f1df1 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js @@ -7,12 +7,6 @@ import {x} from "f1" foo() -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:12.000] Search path: /c/d Info 2 [00:00:13.000] For info: /c/d/f0.ts :: No config files found. Info 3 [00:00:14.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* diff --git a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js index b17218af56217..fef126338b3c9 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js +++ b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js @@ -38,12 +38,6 @@ let y = 10; {"files":["app.ts","../core/core.ts"],"compilerOptions":{"outFile":"build/output.js"},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/app1 Info 3 [00:00:36.000] For info: /user/username/projects/myproject/app1/app.ts :: Config file name: /user/username/projects/myproject/app1/tsconfig.json Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/app1/tsconfig.json @@ -91,21 +85,19 @@ Info 18 [00:00:56.000] Projects: /user/username/projects/myproject/app1/tsco After request PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: +/user/username/projects/myproject/app1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: +/user/username/projects/myproject/app1/tsconfig.json: *new* {} -/user/username/projects/myproject/core/core.ts: +/user/username/projects/myproject/core/core.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 18 [00:00:57.000] response: { "responseRequired": false @@ -121,22 +113,6 @@ Info 19 [00:00:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/user/username/projects/myproject/core/core.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 20 [00:00:59.000] Search path: /user/username/projects/myproject/app2 Info 21 [00:01:00.000] For info: /user/username/projects/myproject/app2/app.ts :: Config file name: /user/username/projects/myproject/app2/tsconfig.json Info 22 [00:01:01.000] Creating configuration project /user/username/projects/myproject/app2/tsconfig.json @@ -192,7 +168,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: +/user/username/projects/myproject/app2/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -202,11 +178,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/app2/tsconfig.json: +/user/username/projects/myproject/app2/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 34 [00:01:24.000] response: { "responseRequired": false @@ -222,26 +196,6 @@ Info 35 [00:01:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/user/username/projects/myproject/core/core.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 36 [00:01:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/core/core.ts 500 undefined WatchType: Closed Script info Info 37 [00:01:27.000] Search path: /user/username/projects/myproject/core Info 38 [00:01:28.000] For info: /user/username/projects/myproject/core/core.ts :: No config files found. @@ -278,7 +232,9 @@ FsWatches:: /user/username/projects/myproject/app2/tsconfig.json: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/user/username/projects/myproject/core/core.ts: + {} Info 39 [00:01:42.000] response: { @@ -300,44 +256,8 @@ Info 40 [00:01:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 41 [00:01:44.000] response: { "responseRequired": false @@ -358,44 +278,8 @@ Info 42 [00:01:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 43 [00:01:46.000] response: { "responseRequired": false @@ -413,24 +297,6 @@ Info 44 [00:01:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 45 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app1/tsconfig.json Info 46 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app1/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 47 [00:01:50.000] Different program with same set of files @@ -471,24 +337,6 @@ Info 53 [00:02:20.000] FileName: /user/username/projects/myproject/core/core. Info 53 [00:02:21.000] Projects: /user/username/projects/myproject/app1/tsconfig.json,/user/username/projects/myproject/app2/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 53 [00:02:22.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js index e0ad1f60f3195..a2b48f6ea5fb5 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js +++ b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js @@ -38,12 +38,6 @@ let y = 10; {"files":["app.ts","../core/core.ts"],"compilerOptions":{"outFile":"build/output.js"},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/app1 Info 3 [00:00:36.000] For info: /user/username/projects/myproject/app1/app.ts :: Config file name: /user/username/projects/myproject/app1/tsconfig.json Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/app1/tsconfig.json @@ -91,21 +85,19 @@ Info 18 [00:00:56.000] Projects: /user/username/projects/myproject/app1/tsco After request PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: +/user/username/projects/myproject/app1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: +/user/username/projects/myproject/app1/tsconfig.json: *new* {} -/user/username/projects/myproject/core/core.ts: +/user/username/projects/myproject/core/core.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 18 [00:00:57.000] response: { "responseRequired": false @@ -121,22 +113,6 @@ Info 19 [00:00:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/user/username/projects/myproject/core/core.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 20 [00:00:59.000] Search path: /user/username/projects/myproject/app2 Info 21 [00:01:00.000] For info: /user/username/projects/myproject/app2/app.ts :: Config file name: /user/username/projects/myproject/app2/tsconfig.json Info 22 [00:01:01.000] Creating configuration project /user/username/projects/myproject/app2/tsconfig.json @@ -192,7 +168,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: +/user/username/projects/myproject/app2/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -202,11 +178,9 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/app2/tsconfig.json: +/user/username/projects/myproject/app2/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 34 [00:01:24.000] response: { "responseRequired": false @@ -222,26 +196,6 @@ Info 35 [00:01:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/user/username/projects/myproject/core/core.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 36 [00:01:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/core/core.ts 500 undefined WatchType: Closed Script info Info 37 [00:01:27.000] Search path: /user/username/projects/myproject/core Info 38 [00:01:28.000] For info: /user/username/projects/myproject/core/core.ts :: No config files found. @@ -278,7 +232,9 @@ FsWatches:: /user/username/projects/myproject/app2/tsconfig.json: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/user/username/projects/myproject/core/core.ts: + {} Info 39 [00:01:42.000] response: { @@ -300,44 +256,8 @@ Info 40 [00:01:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 41 [00:01:44.000] response: { "responseRequired": false @@ -358,44 +278,8 @@ Info 42 [00:01:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 43 [00:01:46.000] response: { "responseRequired": false @@ -414,47 +298,11 @@ Info 44 [00:01:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 45 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app1/tsconfig.json Info 46 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app1/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 47 [00:01:50.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/app1/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app2/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/app2/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 48 [00:01:51.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js index 4bb4fbfdd7a13..e5294125b4012 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js +++ b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-out-is-set.js @@ -19,12 +19,6 @@ let y = 1 {"compilerOptions":{"out":"/a/out.js"},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:13.000] Search path: /a Info 3 [00:00:14.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:15.000] Creating configuration project /a/tsconfig.json @@ -69,19 +63,19 @@ Info 18 [00:00:34.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 18 [00:00:35.000] response: @@ -99,22 +93,6 @@ Info 19 [00:00:36.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 20 [00:00:37.000] Before ensureProjectForOpenFiles: Info 21 [00:00:38.000] Project '/a/tsconfig.json' (Configured) Info 21 [00:00:39.000] Files (2) @@ -133,22 +111,6 @@ Info 22 [00:00:49.000] FileName: /a/a.ts ProjectRootPath: undefined Info 22 [00:00:50.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 22 [00:00:51.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js index 9392aa8151888..51dc3b05ab862 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js +++ b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-be-true-if-outFile-is-set.js @@ -19,12 +19,6 @@ let y = 1 {"compilerOptions":{"outFile":"/a/out.js"},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:13.000] Search path: /a Info 3 [00:00:14.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:15.000] Creating configuration project /a/tsconfig.json @@ -69,19 +63,19 @@ Info 18 [00:00:34.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 18 [00:00:35.000] response: @@ -99,22 +93,6 @@ Info 19 [00:00:36.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 20 [00:00:37.000] Before ensureProjectForOpenFiles: Info 21 [00:00:38.000] Project '/a/tsconfig.json' (Configured) Info 21 [00:00:39.000] Files (2) @@ -133,22 +111,6 @@ Info 22 [00:00:49.000] FileName: /a/a.ts ProjectRootPath: undefined Info 22 [00:00:50.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 22 [00:00:51.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js index 7509260c72df1..b0ac3cb666e9e 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js +++ b/tests/baselines/reference/tsserver/compileOnSave/compileOnSaveAffectedFileList-projectUsesOutFile-should-not-be-returned-if-not-set.js @@ -19,12 +19,6 @@ let y = 1 {"compilerOptions":{},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:13.000] Search path: /a Info 3 [00:00:14.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:15.000] Creating configuration project /a/tsconfig.json @@ -68,19 +62,19 @@ Info 18 [00:00:34.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 18 [00:00:35.000] response: @@ -98,22 +92,6 @@ Info 19 [00:00:36.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 20 [00:00:37.000] Before ensureProjectForOpenFiles: Info 21 [00:00:38.000] Project '/a/tsconfig.json' (Configured) Info 21 [00:00:39.000] Files (2) @@ -132,22 +110,6 @@ Info 22 [00:00:49.000] FileName: /a/a.ts ProjectRootPath: undefined Info 22 [00:00:50.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 22 [00:00:51.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js index 0d892656d476e..fb2e71c39e3cd 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js @@ -25,12 +25,6 @@ import {t} from "../b/file1"; var t3 = 11; { "compileOnSave": true } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/b Info 3 [00:00:22.000] For info: /a/b/file1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/b/tsconfig.json @@ -75,19 +69,19 @@ Info 18 [00:00:42.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file2.ts: +/a/b/file2.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 18 [00:00:43.000] response: @@ -105,22 +99,6 @@ Info 19 [00:00:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file2.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 20 [00:00:45.000] FileWatcher:: Close:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info Info 21 [00:00:46.000] Search path: /a/b Info 22 [00:00:47.000] For info: /a/b/file2.ts :: Config file name: /a/b/tsconfig.json @@ -145,6 +123,10 @@ FsWatches:: /a/b/tsconfig.json: {} +FsWatches *deleted*:: +/a/b/file2.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -164,20 +146,6 @@ Info 24 [00:00:57.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 25 [00:00:58.000] Search path: /a/c Info 26 [00:00:59.000] For info: /a/c/file2.ts :: Config file name: /a/c/tsconfig.json Info 27 [00:01:00.000] Creating configuration project /a/c/tsconfig.json @@ -231,19 +199,19 @@ PolledWatches:: {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} -/a/c/node_modules/@types: +/a/c/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: /a/b/tsconfig.json: {} -/a/c/tsconfig.json: +/a/c/tsconfig.json: *new* {} FsWatchesRecursive:: /a/b: {} -/a/c: +/a/c: *new* {} Info 40 [00:01:26.000] response: @@ -261,26 +229,6 @@ Info 41 [00:01:27.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/c/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/c/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} -/a/c: - {} - Info 42 [00:01:28.000] Before ensureProjectForOpenFiles: Info 43 [00:01:29.000] Project '/a/b/tsconfig.json' (Configured) Info 43 [00:01:30.000] Files (2) @@ -315,26 +263,6 @@ Info 44 [00:01:54.000] FileName: /a/c/file2.ts ProjectRootPath: undefined Info 44 [00:01:55.000] Projects: /a/c/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/c/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/c/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} -/a/c: - {} - Info 44 [00:01:56.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js index c7155e9bc417f..c31de4aee75f3 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-cascaded-affected-file-list.js @@ -40,12 +40,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:23.000] Search path: /a/b Info 3 [00:00:24.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:25.000] Creating configuration project /a/b/tsconfig.json @@ -104,23 +98,23 @@ Info 20 [00:00:46.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer1consumer1.ts: +/a/b/file1consumer1consumer1.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 20 [00:00:47.000] response: @@ -138,26 +132,6 @@ Info 21 [00:00:48.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 22 [00:00:49.000] FileWatcher:: Close:: WatchInfo: /a/b/file1Consumer1.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:50.000] Search path: /a/b Info 24 [00:00:51.000] For info: /a/b/file1Consumer1.ts :: Config file name: /a/b/tsconfig.json @@ -186,6 +160,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/file1consumer1.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -206,44 +184,8 @@ Info 26 [00:01:01.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 27 [00:01:02.000] response: { "response": [ @@ -275,44 +217,8 @@ Info 28 [00:01:03.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 29 [00:01:04.000] response: { "responseRequired": false @@ -333,44 +239,8 @@ Info 30 [00:01:05.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 31 [00:01:06.000] response: { "responseRequired": false @@ -387,47 +257,11 @@ Info 32 [00:01:07.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 33 [00:01:08.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 34 [00:01:09.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 35 [00:01:10.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 36 [00:01:11.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js index 5ff3c735f8a2b..fe7a0d736f080 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-circular-references.js @@ -25,12 +25,6 @@ Before request } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:15.000] Search path: /a/b Info 3 [00:00:16.000] For info: /a/b/file1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:17.000] Creating configuration project /a/b/tsconfig.json @@ -76,19 +70,19 @@ Info 18 [00:00:36.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file2.ts: +/a/b/file2.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 18 [00:00:37.000] response: @@ -106,22 +100,6 @@ Info 19 [00:00:38.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file2.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 20 [00:00:39.000] FileWatcher:: Close:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info Info 21 [00:00:40.000] Search path: /a/b Info 22 [00:00:41.000] For info: /a/b/file2.ts :: Config file name: /a/b/tsconfig.json @@ -146,6 +124,10 @@ FsWatches:: /a/b/tsconfig.json: {} +FsWatches *deleted*:: +/a/b/file2.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -165,20 +147,6 @@ Info 24 [00:00:51.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 25 [00:00:52.000] Before ensureProjectForOpenFiles: Info 26 [00:00:53.000] Project '/a/b/tsconfig.json' (Configured) Info 26 [00:00:54.000] Files (2) @@ -201,20 +169,6 @@ Info 27 [00:01:08.000] FileName: /a/b/file2.ts ProjectRootPath: undefined Info 27 [00:01:09.000] Projects: /a/b/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 27 [00:01:10.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js index 29ccab06c46e9..c0b121ba45f32 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-disabled.js @@ -35,12 +35,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/b Info 3 [00:00:22.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/b/tsconfig.json @@ -94,21 +88,21 @@ Info 19 [00:00:43.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 19 [00:00:44.000] response: @@ -127,44 +121,8 @@ Info 20 [00:00:45.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 21 [00:00:46.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js index 9036ac7c4320f..9bc5e786a2f59 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-compileOnSave-in-base-tsconfig.js @@ -42,12 +42,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:23.000] Search path: /a/b Info 3 [00:00:24.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:25.000] Creating configuration project /a/b/tsconfig.json @@ -102,23 +96,23 @@ Info 20 [00:00:46.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 20 [00:00:47.000] response: @@ -136,26 +130,6 @@ Info 21 [00:00:48.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 22 [00:00:49.000] FileWatcher:: Close:: WatchInfo: /a/b/file1Consumer1.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:50.000] Search path: /a/b Info 24 [00:00:51.000] For info: /a/b/file1Consumer1.ts :: Config file name: /a/b/tsconfig.json @@ -184,6 +158,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/file1consumer1.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -204,44 +182,8 @@ Info 26 [00:01:01.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 27 [00:01:02.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js index e878eb31493dc..cf25c6797d4c1 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-detect-changes-in-non-root-files.js @@ -35,12 +35,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] Search path: /a/b Info 3 [00:00:20.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:21.000] Creating configuration project /a/b/tsconfig.json @@ -84,19 +78,17 @@ Info 16 [00:00:38.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 16 [00:00:39.000] response: { "responseRequired": false @@ -112,20 +104,6 @@ Info 17 [00:00:40.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 18 [00:00:41.000] FileWatcher:: Close:: WatchInfo: /a/b/file1Consumer1.ts 500 undefined WatchType: Closed Script info Info 19 [00:00:42.000] Search path: /a/b Info 20 [00:00:43.000] For info: /a/b/file1Consumer1.ts :: Config file name: /a/b/tsconfig.json @@ -150,7 +128,9 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/file1consumer1.ts: + {} Info 21 [00:00:52.000] response: { @@ -168,32 +148,8 @@ Info 22 [00:00:53.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 23 [00:00:54.000] response: { "response": [ @@ -224,32 +180,8 @@ Info 24 [00:00:55.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 25 [00:00:56.000] response: { "responseRequired": false @@ -266,35 +198,11 @@ Info 26 [00:00:57.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 27 [00:00:58.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 28 [00:00:59.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 29 [00:01:00.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 30 [00:01:01.000] response: { "response": [ @@ -325,32 +233,8 @@ Info 31 [00:01:02.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 32 [00:01:03.000] response: { "responseRequired": false @@ -367,35 +251,11 @@ Info 33 [00:01:04.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 34 [00:01:05.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 35 [00:01:06.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:07.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 37 [00:01:08.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js index 6d2230adc6599..31a706d488db1 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-global-file-shape-changed.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /a/b Info 3 [00:00:26.000] For info: /a/b/globalFile3.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json @@ -112,25 +106,25 @@ Info 21 [00:00:49.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:50.000] response: @@ -153,52 +147,8 @@ Info 22 [00:00:51.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 23 [00:00:52.000] response: { "responseRequired": false @@ -214,28 +164,6 @@ Info 24 [00:00:53.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 25 [00:00:54.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 26 [00:00:55.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 27 [00:00:56.000] Different program with same set of files @@ -257,28 +185,6 @@ Info 30 [00:01:09.000] FileName: /a/b/globalFile3.ts ProjectRootPath: undefin Info 30 [00:01:10.000] Projects: /a/b/tsconfig.json After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/modulefile1.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 30 [00:01:11.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js index 29606029ec52e..a1206c8185fa1 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-isolatedModules.js @@ -37,12 +37,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] Search path: /a/b Info 3 [00:00:20.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:21.000] Creating configuration project /a/b/tsconfig.json @@ -91,19 +85,19 @@ Info 18 [00:00:40.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 18 [00:00:41.000] response: @@ -126,40 +120,8 @@ Info 19 [00:00:42.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 20 [00:00:43.000] response: { "responseRequired": false @@ -176,43 +138,11 @@ Info 21 [00:00:44.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 22 [00:00:45.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 23 [00:00:46.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 24 [00:00:47.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 25 [00:00:48.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js index 495eac04d4784..6b3d502646193 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-module-shape-changed.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /a/b Info 3 [00:00:26.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json @@ -112,25 +106,25 @@ Info 21 [00:00:49.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:50.000] response: @@ -148,28 +142,6 @@ Info 22 [00:00:51.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 23 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/file1Consumer1.ts 500 undefined WatchType: Closed Script info Info 24 [00:00:53.000] Search path: /a/b Info 25 [00:00:54.000] For info: /a/b/file1Consumer1.ts :: Config file name: /a/b/tsconfig.json @@ -200,6 +172,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/file1consumer1.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -220,48 +196,8 @@ Info 27 [00:01:04.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 28 [00:01:05.000] response: { "response": [ @@ -293,48 +229,8 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 30 [00:01:07.000] response: { "responseRequired": false @@ -351,51 +247,11 @@ Info 31 [00:01:08.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 32 [00:01:09.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 33 [00:01:10.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 34 [00:01:11.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 35 [00:01:12.000] response: { "response": [ @@ -427,48 +283,8 @@ Info 36 [00:01:13.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 37 [00:01:14.000] response: { "responseRequired": false @@ -485,51 +301,11 @@ Info 38 [00:01:15.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 39 [00:01:16.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 40 [00:01:17.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 41 [00:01:18.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 42 [00:01:19.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js index 1f9e2612cfe86..4438dffb24f9c 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-noEmit.js @@ -40,12 +40,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/b Info 3 [00:00:22.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/b/tsconfig.json @@ -100,21 +94,21 @@ Info 19 [00:00:43.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 19 [00:00:44.000] response: @@ -133,44 +127,8 @@ Info 20 [00:00:45.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 21 [00:00:46.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-non-existing-code.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-non-existing-code.js index d6ffa2cdfa10b..2e7f7f37a5180 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-non-existing-code.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-non-existing-code.js @@ -20,12 +20,6 @@ Before request } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:13.000] Search path: /a/b Info 3 [00:00:14.000] For info: /a/b/referenceFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:15.000] Creating configuration project /a/b/tsconfig.json @@ -65,19 +59,19 @@ Info 18 [00:00:34.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {"pollingInterval":500} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 18 [00:00:35.000] response: @@ -95,22 +89,6 @@ Info 19 [00:00:36.000] request: } Before request -PolledWatches:: -/a/b/modulefile2.ts: - {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 20 [00:00:37.000] Before ensureProjectForOpenFiles: Info 21 [00:00:38.000] Project '/a/b/tsconfig.json' (Configured) Info 21 [00:00:39.000] Files (1) @@ -129,22 +107,6 @@ Info 22 [00:00:49.000] FileName: /a/b/referenceFile1.ts ProjectRootPath: unde Info 22 [00:00:50.000] Projects: /a/b/tsconfig.json After request -PolledWatches:: -/a/b/modulefile2.ts: - {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 22 [00:00:51.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js index 20055e0bbea2f..dbc4baf0af1e1 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-outFile.js @@ -38,12 +38,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] Search path: /a/b Info 3 [00:00:20.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:21.000] Creating configuration project /a/b/tsconfig.json @@ -93,19 +87,19 @@ Info 18 [00:00:40.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 18 [00:00:41.000] response: @@ -128,40 +122,8 @@ Info 19 [00:00:42.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 20 [00:00:43.000] response: { "responseRequired": false @@ -178,43 +140,11 @@ Info 21 [00:00:44.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 22 [00:00:45.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 23 [00:00:46.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 24 [00:00:47.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 25 [00:00:48.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js index 93cc42b71a57b..b15383800e150 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-removed-code.js @@ -23,12 +23,6 @@ export function Foo() { }; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:15.000] Search path: /a/b Info 3 [00:00:16.000] For info: /a/b/referenceFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:17.000] Creating configuration project /a/b/tsconfig.json @@ -73,19 +67,19 @@ Info 18 [00:00:36.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 18 [00:00:37.000] response: @@ -123,6 +117,10 @@ FsWatches:: /a/b/tsconfig.json: {} +FsWatches *deleted*:: +/a/b/modulefile1.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -162,7 +160,7 @@ PolledWatches:: {"pollingInterval":500} /a/b/node_modules/@types: {"pollingInterval":500} -/a/b/modulefile1.ts: +/a/b/modulefile1.ts: *new* {"pollingInterval":500} FsWatches:: @@ -197,40 +195,8 @@ Info 38 [00:01:10.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/modulefile1.ts: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/modulefile1.ts: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 39 [00:01:11.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js index a4e32c5170e90..a14d1f9b656bc 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-changes-in-non-open-files.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /a/b Info 3 [00:00:26.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json @@ -112,25 +106,25 @@ Info 21 [00:00:49.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:50.000] response: @@ -149,52 +143,8 @@ Info 22 [00:00:51.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 23 [00:00:52.000] response: { "response": [ @@ -233,52 +183,8 @@ Before request let y = 10; -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 29 [00:01:01.000] response: { "responseRequired": false @@ -295,55 +201,11 @@ Info 30 [00:01:02.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 31 [00:01:03.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 32 [00:01:04.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info 33 [00:01:05.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 34 [00:01:06.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js index 2cf8af9692ab7..8b78b0561807e 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-deleted-files.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /a/b Info 3 [00:00:26.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json @@ -112,25 +106,25 @@ Info 21 [00:00:49.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:50.000] response: @@ -149,52 +143,8 @@ Info 22 [00:00:51.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 23 [00:00:52.000] response: { "response": [ @@ -226,52 +176,8 @@ Info 24 [00:00:53.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 25 [00:00:54.000] response: { "responseRequired": false @@ -314,6 +220,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/file1consumer2.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -344,26 +254,6 @@ Info 39 [00:01:09.000] Files (5) Info 40 [00:01:10.000] ----------------------------------------------- After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 41 [00:01:11.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js index 5cfb421e76e13..6a292ac0f4adb 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-new-files.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /a/b Info 3 [00:00:26.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json @@ -112,25 +106,25 @@ Info 21 [00:00:49.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:50.000] response: @@ -149,52 +143,8 @@ Info 22 [00:00:51.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 23 [00:00:52.000] response: { "response": [ @@ -219,28 +169,6 @@ Before running timeout callbacks import {Foo} from "./moduleFile1"; let y = Foo(); -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 28 [00:00:59.000] Running: /a/b/tsconfig.json Info 29 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /a/b/file1Consumer3.ts 500 undefined WatchType: Closed Script info Info 30 [00:01:01.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json @@ -311,7 +239,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/file1consumer3.ts: +/a/b/file1consumer3.ts: *new* {} FsWatchesRecursive:: @@ -334,56 +262,8 @@ Info 38 [00:01:21.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b/file1consumer3.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b/file1consumer3.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 39 [00:01:22.000] response: { "responseRequired": false @@ -400,59 +280,11 @@ Info 40 [00:01:23.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b/file1consumer3.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 41 [00:01:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 42 [00:01:25.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 43 [00:01:26.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b/file1consumer3.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 44 [00:01:27.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js index 4c34025fa38e6..8319fe0e285c9 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-uptodate-with-reference-map-changes.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /a/b Info 3 [00:00:26.000] For info: /a/b/moduleFile1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json @@ -112,25 +106,25 @@ Info 21 [00:00:49.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/file1consumer1.ts: +/a/b/file1consumer1.ts: *new* {} -/a/b/file1consumer2.ts: +/a/b/file1consumer2.ts: *new* {} -/a/b/globalfile3.ts: +/a/b/globalfile3.ts: *new* {} -/a/b/modulefile2.ts: +/a/b/modulefile2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:50.000] response: @@ -148,28 +142,6 @@ Info 22 [00:00:51.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer1.ts: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 23 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/file1Consumer1.ts 500 undefined WatchType: Closed Script info Info 24 [00:00:53.000] Search path: /a/b Info 25 [00:00:54.000] For info: /a/b/file1Consumer1.ts :: Config file name: /a/b/tsconfig.json @@ -200,6 +172,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/file1consumer1.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -220,48 +196,8 @@ Info 27 [00:01:04.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 28 [00:01:05.000] response: { "response": [ @@ -293,48 +229,8 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 30 [00:01:07.000] response: { "responseRequired": false @@ -355,48 +251,8 @@ Info 31 [00:01:08.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 32 [00:01:09.000] response: { "responseRequired": false @@ -413,51 +269,11 @@ Info 33 [00:01:10.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 34 [00:01:11.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 35 [00:01:12.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info 36 [00:01:13.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 37 [00:01:14.000] response: { "response": [ @@ -488,48 +304,8 @@ Info 38 [00:01:15.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 39 [00:01:16.000] response: { "responseRequired": false @@ -550,48 +326,8 @@ Info 40 [00:01:17.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 41 [00:01:18.000] response: { "responseRequired": false @@ -608,51 +344,11 @@ Info 42 [00:01:19.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 43 [00:01:20.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 44 [00:01:21.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info 45 [00:01:22.000] Different program with same set of files After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/file1consumer2.ts: - {} -/a/b/globalfile3.ts: - {} -/a/b/modulefile2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 46 [00:01:23.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js index edfbc8bfb944f..39584700d45a4 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-composite.js @@ -19,12 +19,6 @@ var y = 1; {"compilerOptions":{"composite":true},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:15.000] Search path: /a/runtime Info 3 [00:00:16.000] For info: /a/runtime/a.d.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:17.000] Creating configuration project /a/tsconfig.json @@ -71,19 +65,19 @@ Info 20 [00:00:38.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 20 [00:00:39.000] response: @@ -101,22 +95,6 @@ Info 21 [00:00:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 22 [00:00:41.000] FileWatcher:: Close:: WatchInfo: /a/b.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:42.000] Search path: /a Info 24 [00:00:43.000] For info: /a/b.ts :: Config file name: /a/tsconfig.json @@ -143,6 +121,10 @@ FsWatches:: /a/tsconfig.json: {} +FsWatches *deleted*:: +/a/b.ts: + {} + FsWatchesRecursive:: /a: {} @@ -162,20 +144,6 @@ Info 28 [00:00:55.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 29 [00:00:56.000] Before ensureProjectForOpenFiles: Info 30 [00:00:57.000] Project '/a/tsconfig.json' (Configured) Info 30 [00:00:58.000] Files (2) @@ -198,20 +166,6 @@ Info 31 [00:01:12.000] FileName: /a/b.ts ProjectRootPath: undefined Info 31 [00:01:13.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 31 [00:01:14.000] response: { "response": [ @@ -237,36 +191,8 @@ Info 32 [00:01:15.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 33 [00:01:16.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js index e18d41a242d60..266f1e201f530 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-decorator-emit.js @@ -19,12 +19,6 @@ var y = 1; {"compilerOptions":{"experimentalDecorators":true,"emitDecoratorMetadata":true},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:15.000] Search path: /a/runtime Info 3 [00:00:16.000] For info: /a/runtime/a.d.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:17.000] Creating configuration project /a/tsconfig.json @@ -70,19 +64,19 @@ Info 18 [00:00:36.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 18 [00:00:37.000] response: @@ -100,22 +94,6 @@ Info 19 [00:00:38.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 20 [00:00:39.000] FileWatcher:: Close:: WatchInfo: /a/b.ts 500 undefined WatchType: Closed Script info Info 21 [00:00:40.000] Search path: /a Info 22 [00:00:41.000] For info: /a/b.ts :: Config file name: /a/tsconfig.json @@ -140,6 +118,10 @@ FsWatches:: /a/tsconfig.json: {} +FsWatches *deleted*:: +/a/b.ts: + {} + FsWatchesRecursive:: /a: {} @@ -159,20 +141,6 @@ Info 24 [00:00:51.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 25 [00:00:52.000] Before ensureProjectForOpenFiles: Info 26 [00:00:53.000] Project '/a/tsconfig.json' (Configured) Info 26 [00:00:54.000] Files (2) @@ -195,20 +163,6 @@ Info 27 [00:01:08.000] FileName: /a/b.ts ProjectRootPath: undefined Info 27 [00:01:09.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 27 [00:01:10.000] response: { "response": [ @@ -234,36 +188,8 @@ Info 28 [00:01:11.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 29 [00:01:12.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js index c3119f4f3d782..d7573ca822472 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file-with-dts-emit.js @@ -19,12 +19,6 @@ var y = 1; {"compilerOptions":{"declaration":true},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:15.000] Search path: /a/runtime Info 3 [00:00:16.000] For info: /a/runtime/a.d.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:17.000] Creating configuration project /a/tsconfig.json @@ -69,19 +63,19 @@ Info 18 [00:00:36.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 18 [00:00:37.000] response: @@ -99,22 +93,6 @@ Info 19 [00:00:38.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 20 [00:00:39.000] FileWatcher:: Close:: WatchInfo: /a/b.ts 500 undefined WatchType: Closed Script info Info 21 [00:00:40.000] Search path: /a Info 22 [00:00:41.000] For info: /a/b.ts :: Config file name: /a/tsconfig.json @@ -139,6 +117,10 @@ FsWatches:: /a/tsconfig.json: {} +FsWatches *deleted*:: +/a/b.ts: + {} + FsWatchesRecursive:: /a: {} @@ -158,20 +140,6 @@ Info 24 [00:00:51.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 25 [00:00:52.000] Before ensureProjectForOpenFiles: Info 26 [00:00:53.000] Project '/a/tsconfig.json' (Configured) Info 26 [00:00:54.000] Files (2) @@ -194,20 +162,6 @@ Info 27 [00:01:08.000] FileName: /a/b.ts ProjectRootPath: undefined Info 27 [00:01:09.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 27 [00:01:10.000] response: { "response": [ @@ -233,36 +187,8 @@ Info 28 [00:01:11.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 29 [00:01:12.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js index 25d3f5750b6bc..9e088c684be06 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-global-file.js @@ -19,12 +19,6 @@ var y = 1; {"compilerOptions":{},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:15.000] Search path: /a/runtime Info 3 [00:00:16.000] For info: /a/runtime/a.d.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:17.000] Creating configuration project /a/tsconfig.json @@ -68,19 +62,19 @@ Info 18 [00:00:36.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 18 [00:00:37.000] response: @@ -98,22 +92,6 @@ Info 19 [00:00:38.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 20 [00:00:39.000] FileWatcher:: Close:: WatchInfo: /a/b.ts 500 undefined WatchType: Closed Script info Info 21 [00:00:40.000] Search path: /a Info 22 [00:00:41.000] For info: /a/b.ts :: Config file name: /a/tsconfig.json @@ -138,6 +116,10 @@ FsWatches:: /a/tsconfig.json: {} +FsWatches *deleted*:: +/a/b.ts: + {} + FsWatchesRecursive:: /a: {} @@ -157,20 +139,6 @@ Info 24 [00:00:51.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 25 [00:00:52.000] Before ensureProjectForOpenFiles: Info 26 [00:00:53.000] Project '/a/tsconfig.json' (Configured) Info 26 [00:00:54.000] Files (2) @@ -193,20 +161,6 @@ Info 27 [00:01:08.000] FileName: /a/b.ts ProjectRootPath: undefined Info 27 [00:01:09.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 27 [00:01:10.000] response: { "response": [], @@ -223,36 +177,8 @@ Info 28 [00:01:11.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 29 [00:01:12.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js index 925e77ce45f82..14d9356e18b21 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js +++ b/tests/baselines/reference/tsserver/compileOnSave/dtsFileChange-in-module-file.js @@ -19,12 +19,6 @@ import { x } from './runtime/a; {"compilerOptions":{},"compileOnSave":true} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:15.000] Search path: /a/runtime Info 3 [00:00:16.000] For info: /a/runtime/a.d.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:17.000] Creating configuration project /a/tsconfig.json @@ -70,21 +64,21 @@ Info 20 [00:00:38.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/b.ts: +/a/b.ts: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} -/a/runtime: +/a/runtime: *new* {} Info 20 [00:00:39.000] response: @@ -102,24 +96,6 @@ Info 21 [00:00:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/b.ts: - {} - -FsWatchesRecursive:: -/a: - {} -/a/runtime: - {} - Info 22 [00:00:41.000] FileWatcher:: Close:: WatchInfo: /a/b.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:42.000] Search path: /a Info 24 [00:00:43.000] For info: /a/b.ts :: Config file name: /a/tsconfig.json @@ -144,6 +120,10 @@ FsWatches:: /a/tsconfig.json: {} +FsWatches *deleted*:: +/a/b.ts: + {} + FsWatchesRecursive:: /a: {} @@ -165,22 +145,6 @@ Info 26 [00:00:53.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/a/runtime: - {} - Info 27 [00:00:54.000] Before ensureProjectForOpenFiles: Info 28 [00:00:55.000] Project '/a/tsconfig.json' (Configured) Info 28 [00:00:56.000] Files (2) @@ -203,22 +167,6 @@ Info 29 [00:01:10.000] FileName: /a/b.ts ProjectRootPath: undefined Info 29 [00:01:11.000] Projects: /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/a/runtime: - {} - Info 29 [00:01:12.000] response: { "response": [], @@ -235,40 +183,8 @@ Info 30 [00:01:13.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/a/runtime: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/a/runtime: - {} - Info 31 [00:01:14.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js index e432bc4caf5af..289c404ac7d99 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-dts-emit.js @@ -41,12 +41,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:27.000] Search path: /user/username/projects/myproject Info 3 [00:00:28.000] For info: /user/username/projects/myproject/file1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -100,21 +94,21 @@ Info 19 [00:00:49.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file2.ts: +/user/username/projects/myproject/file2.ts: *new* {} -/user/username/projects/myproject/file3.ts: +/user/username/projects/myproject/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 19 [00:00:50.000] response: @@ -132,24 +126,6 @@ Info 20 [00:00:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 21 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/file2.ts 500 undefined WatchType: Closed Script info Info 22 [00:00:53.000] Search path: /user/username/projects/myproject Info 23 [00:00:54.000] For info: /user/username/projects/myproject/file2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json @@ -176,6 +152,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/file2.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject: {} @@ -195,22 +175,6 @@ Info 25 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 26 [00:01:05.000] Before ensureProjectForOpenFiles: Info 27 [00:01:06.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 27 [00:01:07.000] Files (4) @@ -233,22 +197,6 @@ Info 28 [00:01:21.000] FileName: /user/username/projects/myproject/file2.ts P Info 28 [00:01:22.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 28 [00:01:23.000] response: { "response": [ @@ -275,22 +223,6 @@ Info 29 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 30 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 31 [00:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file1.js Info 32 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -311,22 +243,6 @@ declare function foo(): string; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 36 [00:01:35.000] response: { "response": true, @@ -343,22 +259,6 @@ Info 37 [00:01:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 38 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 39 [00:01:40.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file2.js Info 40 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -379,22 +279,6 @@ declare function bar(): string; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 44 [00:01:47.000] response: { "response": true, @@ -411,22 +295,6 @@ Info 45 [00:01:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 46 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 47 [00:01:52.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file3.js Info 48 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -443,22 +311,6 @@ declare const xy = 3; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 52 [00:01:59.000] response: { "response": true, @@ -492,40 +344,8 @@ Info 53 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 54 [00:02:01.000] response: { "response": true, @@ -542,22 +362,6 @@ Info 55 [00:02:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 56 [00:02:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 57 [00:02:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 58 [00:02:05.000] Different program with same set of files @@ -583,22 +387,6 @@ Info 61 [00:02:22.000] FileName: /user/username/projects/myproject/file2.ts P Info 61 [00:02:23.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 61 [00:02:24.000] response: { "response": [ @@ -623,22 +411,6 @@ Info 62 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file1.js] var x = 1; @@ -649,22 +421,6 @@ function foo() { //// [/user/username/projects/myproject/file1.d.ts] file written with same contents -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 63 [00:02:32.000] response: { "response": true, @@ -698,40 +454,8 @@ Info 64 [00:02:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 65 [00:02:34.000] response: { "response": true, @@ -748,22 +472,6 @@ Info 66 [00:02:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 67 [00:02:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 68 [00:02:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 69 [00:02:38.000] Different program with same set of files @@ -789,22 +497,6 @@ Info 72 [00:02:55.000] FileName: /user/username/projects/myproject/file2.ts P Info 72 [00:02:56.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 72 [00:02:57.000] response: { "response": [ @@ -829,22 +521,6 @@ Info 73 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file2.js] var y = 2; @@ -855,22 +531,6 @@ function bar() { //// [/user/username/projects/myproject/file2.d.ts] file written with same contents -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 74 [00:03:05.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js index 6699c40e80edf..3d180aacd46c2 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module-with-dts-emit.js @@ -44,12 +44,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject Info 3 [00:00:30.000] For info: /user/username/projects/myproject/file1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -107,23 +101,23 @@ Info 20 [00:00:52.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file2.ts: +/user/username/projects/myproject/file2.ts: *new* {} -/user/username/projects/myproject/file3.ts: +/user/username/projects/myproject/file3.ts: *new* {} -/user/username/projects/myproject/module.ts: +/user/username/projects/myproject/module.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 20 [00:00:53.000] response: @@ -141,26 +135,6 @@ Info 21 [00:00:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 22 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/file2.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:56.000] Search path: /user/username/projects/myproject Info 24 [00:00:57.000] For info: /user/username/projects/myproject/file2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json @@ -189,6 +163,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/file2.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject: {} @@ -208,24 +186,6 @@ Info 26 [00:01:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 27 [00:01:08.000] Before ensureProjectForOpenFiles: Info 28 [00:01:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 28 [00:01:10.000] Files (5) @@ -248,24 +208,6 @@ Info 29 [00:01:24.000] FileName: /user/username/projects/myproject/file2.ts P Info 29 [00:01:25.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 29 [00:01:26.000] response: { "response": [ @@ -293,24 +235,6 @@ Info 30 [00:01:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 31 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 32 [00:01:31.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file1.js Info 33 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -331,24 +255,6 @@ declare function foo(): string; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 37 [00:01:38.000] response: { "response": true, @@ -365,24 +271,6 @@ Info 38 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 39 [00:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 40 [00:01:43.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file2.js Info 41 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -403,24 +291,6 @@ declare function bar(): string; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 45 [00:01:50.000] response: { "response": true, @@ -437,24 +307,6 @@ Info 46 [00:01:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 47 [00:01:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 48 [00:01:55.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file3.js Info 49 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -471,24 +323,6 @@ declare const xy = 3; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 53 [00:02:02.000] response: { "response": true, @@ -505,24 +339,6 @@ Info 54 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 55 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/module.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 56 [00:02:07.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/module.js Info 57 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/module.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -542,24 +358,6 @@ export declare const xyz = 4; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 61 [00:02:14.000] response: { "response": true, @@ -593,44 +391,8 @@ Info 62 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 63 [00:02:16.000] response: { "response": true, @@ -647,24 +409,6 @@ Info 64 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 65 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 66 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 67 [00:02:20.000] Different program with same set of files @@ -690,24 +434,6 @@ Info 70 [00:02:37.000] FileName: /user/username/projects/myproject/file2.ts P Info 70 [00:02:38.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 70 [00:02:39.000] response: { "response": [ @@ -732,24 +458,6 @@ Info 71 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file1.js] var x = 1; @@ -760,24 +468,6 @@ function foo() { //// [/user/username/projects/myproject/file1.d.ts] file written with same contents -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 72 [00:02:47.000] response: { "response": true, @@ -811,44 +501,8 @@ Info 73 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 74 [00:02:49.000] response: { "response": true, @@ -865,24 +519,6 @@ Info 75 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 76 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 77 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 78 [00:02:53.000] Different program with same set of files @@ -908,24 +544,6 @@ Info 81 [00:03:10.000] FileName: /user/username/projects/myproject/file2.ts P Info 81 [00:03:11.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 81 [00:03:12.000] response: { "response": [ @@ -950,24 +568,6 @@ Info 82 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file2.js] var y = 2; @@ -978,24 +578,6 @@ function bar() { //// [/user/username/projects/myproject/file2.d.ts] file written with same contents -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 83 [00:03:20.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js index 6bea3a1bd84e8..2b6b32f71d579 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project-with-module.js @@ -44,12 +44,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject Info 3 [00:00:30.000] For info: /user/username/projects/myproject/file1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -107,23 +101,23 @@ Info 20 [00:00:52.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file2.ts: +/user/username/projects/myproject/file2.ts: *new* {} -/user/username/projects/myproject/file3.ts: +/user/username/projects/myproject/file3.ts: *new* {} -/user/username/projects/myproject/module.ts: +/user/username/projects/myproject/module.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 20 [00:00:53.000] response: @@ -141,26 +135,6 @@ Info 21 [00:00:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 22 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/file2.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:56.000] Search path: /user/username/projects/myproject Info 24 [00:00:57.000] For info: /user/username/projects/myproject/file2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json @@ -189,6 +163,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/file2.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject: {} @@ -208,24 +186,6 @@ Info 26 [00:01:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 27 [00:01:08.000] Before ensureProjectForOpenFiles: Info 28 [00:01:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 28 [00:01:10.000] Files (5) @@ -248,24 +208,6 @@ Info 29 [00:01:24.000] FileName: /user/username/projects/myproject/file2.ts P Info 29 [00:01:25.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 29 [00:01:26.000] response: { "response": [ @@ -293,24 +235,6 @@ Info 30 [00:01:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 31 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 32 [00:01:31.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file1.js Info 33 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -323,24 +247,6 @@ function foo() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 34 [00:01:33.000] response: { "response": true, @@ -357,24 +263,6 @@ Info 35 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 36 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 37 [00:01:38.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file2.js Info 38 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -387,24 +275,6 @@ function bar() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 39 [00:01:40.000] response: { "response": true, @@ -421,24 +291,6 @@ Info 40 [00:01:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 41 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 42 [00:01:45.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file3.js Info 43 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -448,24 +300,6 @@ var xy = 3; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 44 [00:01:47.000] response: { "response": true, @@ -482,24 +316,6 @@ Info 45 [00:01:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 46 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/module.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 47 [00:01:52.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/module.js Info 48 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/module.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -512,24 +328,6 @@ exports.xyz = 4; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 49 [00:01:54.000] response: { "response": true, @@ -563,44 +361,8 @@ Info 50 [00:01:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 51 [00:01:56.000] response: { "response": true, @@ -617,24 +379,6 @@ Info 52 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 53 [00:01:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 54 [00:01:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:00.000] Different program with same set of files @@ -660,24 +404,6 @@ Info 58 [00:02:17.000] FileName: /user/username/projects/myproject/file2.ts P Info 58 [00:02:18.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 58 [00:02:19.000] response: { "response": [ @@ -702,24 +428,6 @@ Info 59 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file1.js] var x = 1; @@ -729,24 +437,6 @@ function foo() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 60 [00:02:24.000] response: { "response": true, @@ -780,44 +470,8 @@ Info 61 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 62 [00:02:26.000] response: { "response": true, @@ -834,24 +488,6 @@ Info 63 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 64 [00:02:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 65 [00:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 66 [00:02:30.000] Different program with same set of files @@ -877,24 +513,6 @@ Info 69 [00:02:47.000] FileName: /user/username/projects/myproject/file2.ts P Info 69 [00:02:48.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 69 [00:02:49.000] response: { "response": [ @@ -922,24 +540,6 @@ Info 70 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file2.js] var y = 2; @@ -949,24 +549,6 @@ function bar() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/user/username/projects/myproject/module.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 71 [00:02:54.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js index 4a56b720cf267..a7e6083a296b3 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-in-project.js @@ -41,12 +41,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:27.000] Search path: /user/username/projects/myproject Info 3 [00:00:28.000] For info: /user/username/projects/myproject/file1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -100,21 +94,21 @@ Info 19 [00:00:49.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file2.ts: +/user/username/projects/myproject/file2.ts: *new* {} -/user/username/projects/myproject/file3.ts: +/user/username/projects/myproject/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 19 [00:00:50.000] response: @@ -132,24 +126,6 @@ Info 20 [00:00:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 21 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/file2.ts 500 undefined WatchType: Closed Script info Info 22 [00:00:53.000] Search path: /user/username/projects/myproject Info 23 [00:00:54.000] For info: /user/username/projects/myproject/file2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json @@ -176,6 +152,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/file2.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject: {} @@ -195,22 +175,6 @@ Info 25 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 26 [00:01:05.000] Before ensureProjectForOpenFiles: Info 27 [00:01:06.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 27 [00:01:07.000] Files (4) @@ -233,22 +197,6 @@ Info 28 [00:01:21.000] FileName: /user/username/projects/myproject/file2.ts P Info 28 [00:01:22.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 28 [00:01:23.000] response: { "response": [ @@ -275,22 +223,6 @@ Info 29 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 30 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 31 [00:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file1.js Info 32 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file1.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -303,22 +235,6 @@ function foo() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 33 [00:01:30.000] response: { "response": true, @@ -335,22 +251,6 @@ Info 34 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 35 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 36 [00:01:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file2.js Info 37 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file2.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -363,22 +263,6 @@ function bar() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 38 [00:01:37.000] response: { "response": true, @@ -395,22 +279,6 @@ Info 39 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 40 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 41 [00:01:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/file3.js Info 42 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/file3.js :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -420,22 +288,6 @@ var xy = 3; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 43 [00:01:44.000] response: { "response": true, @@ -469,40 +321,8 @@ Info 44 [00:01:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 45 [00:01:46.000] response: { "response": true, @@ -519,22 +339,6 @@ Info 46 [00:01:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 47 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 48 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:01:50.000] Different program with same set of files @@ -560,22 +364,6 @@ Info 52 [00:02:07.000] FileName: /user/username/projects/myproject/file2.ts P Info 52 [00:02:08.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 52 [00:02:09.000] response: { "response": [ @@ -600,22 +388,6 @@ Info 53 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file1.js] var x = 1; @@ -625,22 +397,6 @@ function foo() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 54 [00:02:14.000] response: { "response": true, @@ -674,40 +430,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 56 [00:02:16.000] response: { "response": true, @@ -724,22 +448,6 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 58 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 59 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 60 [00:02:20.000] Different program with same set of files @@ -765,22 +473,6 @@ Info 63 [00:02:37.000] FileName: /user/username/projects/myproject/file2.ts P Info 63 [00:02:38.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 63 [00:02:39.000] response: { "response": [ @@ -807,22 +499,6 @@ Info 64 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request //// [/user/username/projects/myproject/file2.js] var y = 2; @@ -832,22 +508,6 @@ function bar() { -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 65 [00:02:44.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js b/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js index 9cd811e8df219..a6a256009a0a2 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-specified-file.js @@ -32,12 +32,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] Search path: /a/b Info 3 [00:00:20.000] For info: /a/b/f1.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:21.000] Creating configuration project /a/b/tsconfig.json @@ -85,19 +79,19 @@ Info 18 [00:00:40.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/f2.ts: +/a/b/f2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 18 [00:00:41.000] response: @@ -115,22 +109,6 @@ Info 19 [00:00:42.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/f2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 20 [00:00:43.000] FileWatcher:: Close:: WatchInfo: /a/b/f2.ts 500 undefined WatchType: Closed Script info Info 21 [00:00:44.000] Search path: /a/b Info 22 [00:00:45.000] For info: /a/b/f2.ts :: Config file name: /a/b/tsconfig.json @@ -155,6 +133,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/f2.ts: + {} + FsWatchesRecursive:: /a/b: {} @@ -175,20 +157,6 @@ Info 24 [00:00:55.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 25 [00:00:58.000] DirectoryWatcher:: Triggered with /a/b/f1.js :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 26 [00:00:59.000] Project: /a/b/tsconfig.json Detected file add/remove of non supported extension: /a/b/f1.js Info 27 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/f1.js :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory @@ -202,20 +170,6 @@ exports.Foo = Foo; -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 28 [00:01:01.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js index f15e5e2d88517..59fa26a96f2f3 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-false.js @@ -32,12 +32,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /user/username/projects/myproject Info 3 [00:00:26.000] For info: /user/username/projects/myproject/file1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -87,19 +81,19 @@ Info 18 [00:00:46.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file2.ts: +/user/username/projects/myproject/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 18 [00:00:47.000] response: @@ -117,22 +111,6 @@ Info 19 [00:00:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 20 [00:00:49.000] Before ensureProjectForOpenFiles: Info 21 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 21 [00:00:51.000] Files (3) @@ -151,22 +129,6 @@ Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/file1.ts P Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 22 [00:01:03.000] response: { "response": [ @@ -193,22 +155,6 @@ Info 23 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 24 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/test :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 25 [00:01:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json Info 26 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* @@ -230,22 +176,6 @@ declare const x = 1; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 35 [00:01:23.000] response: { "response": true, @@ -263,22 +193,6 @@ Info 36 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 37 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/file1.d.ts 500 undefined WatchType: Closed Script info Info 38 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 39 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms @@ -313,7 +227,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/test/file1.d.ts: +/user/username/projects/myproject/test/file1.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js index 866a9f2419db2..b22d62f1350c0 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-true.js @@ -32,12 +32,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /user/username/projects/myproject Info 3 [00:00:26.000] For info: /user/username/projects/myproject/file1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -87,19 +81,19 @@ Info 18 [00:00:46.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file2.ts: +/user/username/projects/myproject/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 18 [00:00:47.000] response: @@ -117,22 +111,6 @@ Info 19 [00:00:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 20 [00:00:49.000] Before ensureProjectForOpenFiles: Info 21 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 21 [00:00:51.000] Files (3) @@ -151,22 +129,6 @@ Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/file1.ts P Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 22 [00:01:03.000] response: { "response": [ @@ -193,22 +155,6 @@ Info 23 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 24 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/test :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 25 [00:01:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json Info 26 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* @@ -230,22 +176,6 @@ declare const x = 1; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 35 [00:01:23.000] response: { "response": { @@ -266,22 +196,6 @@ Info 36 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 37 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/file1.d.ts 500 undefined WatchType: Closed Script info Info 38 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 39 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms @@ -316,7 +230,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/test/file1.d.ts: +/user/username/projects/myproject/test/file1.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js index 51c90e807d015..04dc49e7c107e 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js +++ b/tests/baselines/reference/tsserver/compileOnSave/emit-with-richRepsonse-as-undefined.js @@ -32,12 +32,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /user/username/projects/myproject Info 3 [00:00:26.000] For info: /user/username/projects/myproject/file1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -87,19 +81,19 @@ Info 18 [00:00:46.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/file2.ts: +/user/username/projects/myproject/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 18 [00:00:47.000] response: @@ -117,22 +111,6 @@ Info 19 [00:00:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 20 [00:00:49.000] Before ensureProjectForOpenFiles: Info 21 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 21 [00:00:51.000] Files (3) @@ -151,22 +129,6 @@ Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/file1.ts P Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 22 [00:01:03.000] response: { "response": [ @@ -192,22 +154,6 @@ Info 23 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 24 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/test :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 25 [00:01:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json Info 26 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* @@ -229,22 +175,6 @@ declare const x = 1; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 35 [00:01:23.000] response: { "response": true, @@ -261,22 +191,6 @@ Info 36 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/file2.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 37 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/file1.d.ts 500 undefined WatchType: Closed Script info Info 38 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 39 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms @@ -311,7 +225,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/test/file1.d.ts: +/user/username/projects/myproject/test/file1.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/compileOnSave/line-endings.js b/tests/baselines/reference/tsserver/compileOnSave/line-endings.js index deb267818318b..0a873f4ba540d 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/line-endings.js +++ b/tests/baselines/reference/tsserver/compileOnSave/line-endings.js @@ -14,12 +14,6 @@ var x = 1; var y = 2; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:09.000] Search path: /a Info 3 [00:00:10.000] For info: /a/app.ts :: No config files found. Info 4 [00:00:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -46,15 +40,11 @@ Info 12 [00:00:24.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:25.000] response: { "responseRequired": false @@ -70,16 +60,6 @@ Info 13 [00:00:26.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request //// [/a/app.js] var x = 1; @@ -87,16 +67,6 @@ var y = 2; -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 14 [00:00:29.000] response: { "response": true, @@ -118,12 +88,6 @@ var x = 1; var y = 2; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 17 [00:00:09.000] Search path: /a Info 18 [00:00:10.000] For info: /a/app.ts :: No config files found. Info 19 [00:00:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -150,15 +114,11 @@ Info 27 [00:00:24.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: - -FsWatchesRecursive:: - Info 27 [00:00:25.000] response: { "responseRequired": false @@ -174,16 +134,6 @@ Info 28 [00:00:26.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request //// [/a/app.js] var x = 1; @@ -191,16 +141,6 @@ var y = 2; -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 29 [00:00:29.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/compileOnSave/should-not-emit-js-files-in-external-projects.js b/tests/baselines/reference/tsserver/compileOnSave/should-not-emit-js-files-in-external-projects.js index 6c266602ac575..586dd74c93b76 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/should-not-emit-js-files-in-external-projects.js +++ b/tests/baselines/reference/tsserver/compileOnSave/should-not-emit-js-files-in-external-projects.js @@ -45,12 +45,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] FileWatcher:: Added:: WatchInfo: /a/b/file1.ts 500 undefined WatchType: Closed Script info Info 3 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/file2.js 500 undefined WatchType: Closed Script info Info 4 [00:00:21.000] Starting updateGraphWorker: Project: /a/b/externalproject @@ -76,19 +70,17 @@ Info 11 [00:00:28.000] ----------------------------------------------- After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/file1.ts: +/a/b/file1.ts: *new* {} -/a/b/file2.js: +/a/b/file2.js: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 12 [00:00:29.000] response: { "response": true, @@ -105,40 +97,12 @@ Info 13 [00:00:30.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/file1.ts: - {} -/a/b/file2.js: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request //// [/a/b/dist.js] consonle.log('file1'); -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/file1.ts: - {} -/a/b/file2.js: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 14 [00:00:33.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js b/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js index ffd1cba04dc8a..42d70c5d3a481 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js +++ b/tests/baselines/reference/tsserver/compileOnSave/use-projectRoot-as-current-directory.js @@ -36,12 +36,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] FileWatcher:: Added:: WatchInfo: /root/TypeScriptProject3/TypeScriptProject3/Foo.ts 500 undefined WatchType: Closed Script info Info 3 [00:00:20.000] Starting updateGraphWorker: Project: /root/TypeScriptProject3/TypeScriptProject3/TypeScriptProject3.csproj Info 4 [00:00:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info @@ -63,17 +57,15 @@ Info 10 [00:00:27.000] ----------------------------------------------- After request PolledWatches:: -/root/typescriptproject3/typescriptproject3/node_modules/@types: +/root/typescriptproject3/typescriptproject3/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/root/typescriptproject3/typescriptproject3/foo.ts: +/root/typescriptproject3/typescriptproject3/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 11 [00:00:28.000] response: { "response": true, @@ -90,18 +82,6 @@ Info 12 [00:00:29.000] request: } Before request -PolledWatches:: -/root/typescriptproject3/typescriptproject3/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/root/typescriptproject3/typescriptproject3/foo.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request //// [/root/TypeScriptProject3/TypeScriptProject3/bar.js.map] {"version":3,"file":"bar.js","sourceRoot":"","sources":["Foo.ts"],"names":[],"mappings":"AAAA,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC"} @@ -111,18 +91,6 @@ consonle.log('file1'); //# sourceMappingURL=bar.js.map -PolledWatches:: -/root/typescriptproject3/typescriptproject3/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/root/typescriptproject3/typescriptproject3/foo.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 13 [00:00:34.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js index 723c10460b08b..0c5c0ba72d06b 100644 --- a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js +++ b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js @@ -75,12 +75,6 @@ export function foo() {} {"name":"@types/react","version":"16.9.14"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:00.000] Search path: e:/myproject/src Info 3 [00:01:01.000] For info: e:/myproject/src/app.js :: No config files found. Info 4 [00:01:02.000] FileWatcher:: Added:: WatchInfo: e:/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -137,35 +131,35 @@ Info 24 [00:01:27.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -e:/myproject/src/tsconfig.json: +e:/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -e:/myproject/src/jsconfig.json: +e:/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -e:/myproject/src/node_modules: +e:/myproject/src/node_modules: *new* {"pollingInterval":500} -e:/myproject/src/node_modules/@types: +e:/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -e:/myproject/src/bower_components: +e:/myproject/src/bower_components: *new* {"pollingInterval":500} FsWatches:: -c:/a/lib/lib.d.ts: +c:/a/lib/lib.d.ts: *new* {} -e:/myproject/node_modules/@types/react/package.json: +e:/myproject/node_modules/@types/react/package.json: *new* {} -c:/typescript/node_modules/@types/react/package.json: +c:/typescript/node_modules/@types/react/package.json: *new* {} -e:/myproject/node_modules/react-router-dom/package.json: +e:/myproject/node_modules/react-router-dom/package.json: *new* {} -c:/typescript/node_modules/@types/react-router-dom/package.json: +c:/typescript/node_modules/@types/react-router-dom/package.json: *new* {} -e:/myproject/node_modules/@types/prop-types/package.json: +e:/myproject/node_modules/@types/prop-types/package.json: *new* {} -e:/myproject/package.json: +e:/myproject/package.json: *new* {} FsWatchesRecursive:: -e:/myproject/node_modules: +e:/myproject/node_modules: *new* {} Info 24 [00:01:28.000] response: @@ -187,38 +181,6 @@ Info 25 [00:01:29.000] request: } Before request -PolledWatches:: -e:/myproject/src/tsconfig.json: - {"pollingInterval":2000} -e:/myproject/src/jsconfig.json: - {"pollingInterval":2000} -e:/myproject/src/node_modules: - {"pollingInterval":500} -e:/myproject/src/node_modules/@types: - {"pollingInterval":500} -e:/myproject/src/bower_components: - {"pollingInterval":500} - -FsWatches:: -c:/a/lib/lib.d.ts: - {} -e:/myproject/node_modules/@types/react/package.json: - {} -c:/typescript/node_modules/@types/react/package.json: - {} -e:/myproject/node_modules/react-router-dom/package.json: - {} -c:/typescript/node_modules/@types/react-router-dom/package.json: - {} -e:/myproject/node_modules/@types/prop-types/package.json: - {} -e:/myproject/package.json: - {} - -FsWatchesRecursive:: -e:/myproject/node_modules: - {} - Info 26 [00:01:30.000] getCompletionData: Get current token: * Info 27 [00:01:31.000] getCompletionData: Is inside comment: * Info 28 [00:01:32.000] getCompletionData: Get previous token: * @@ -232,38 +194,6 @@ Info 35 [00:01:39.000] getCompletionData: Semantic work: * Info 36 [00:01:40.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -e:/myproject/src/tsconfig.json: - {"pollingInterval":2000} -e:/myproject/src/jsconfig.json: - {"pollingInterval":2000} -e:/myproject/src/node_modules: - {"pollingInterval":500} -e:/myproject/src/node_modules/@types: - {"pollingInterval":500} -e:/myproject/src/bower_components: - {"pollingInterval":500} - -FsWatches:: -c:/a/lib/lib.d.ts: - {} -e:/myproject/node_modules/@types/react/package.json: - {} -c:/typescript/node_modules/@types/react/package.json: - {} -e:/myproject/node_modules/react-router-dom/package.json: - {} -c:/typescript/node_modules/@types/react-router-dom/package.json: - {} -e:/myproject/node_modules/@types/prop-types/package.json: - {} -e:/myproject/package.json: - {} - -FsWatchesRecursive:: -e:/myproject/node_modules: - {} - Info 37 [00:01:41.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/completions/works.js b/tests/baselines/reference/tsserver/completions/works.js index 5bf67bdab7350..2c935f97a5760 100644 --- a/tests/baselines/reference/tsserver/completions/works.js +++ b/tests/baselines/reference/tsserver/completions/works.js @@ -19,12 +19,6 @@ foo {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: / Info 3 [00:00:12.000] For info: /a.ts :: Config file name: /tsconfig.json Info 4 [00:00:13.000] Creating configuration project /tsconfig.json @@ -66,17 +60,17 @@ Info 16 [00:00:30.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/b.ts: +/b.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 16 [00:00:31.000] response: @@ -94,20 +88,6 @@ Info 17 [00:00:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/b.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 18 [00:00:33.000] FileWatcher:: Close:: WatchInfo: /b.ts 500 undefined WatchType: Closed Script info Info 19 [00:00:34.000] Search path: / Info 20 [00:00:35.000] For info: /b.ts :: Config file name: /tsconfig.json @@ -130,6 +110,10 @@ FsWatches:: /tsconfig.json: {} +FsWatches *deleted*:: +/b.ts: + {} + FsWatchesRecursive:: /: {} @@ -153,18 +137,6 @@ Info 22 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 23 [00:00:46.000] getCompletionData: Get current token: * Info 24 [00:00:47.000] getCompletionData: Is inside comment: * Info 25 [00:00:48.000] getCompletionData: Get previous token: * @@ -177,18 +149,6 @@ Info 31 [00:00:54.000] getCompletionData: Semantic work: * Info 32 [00:00:55.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 33 [00:00:56.000] response: { "response": { @@ -248,33 +208,9 @@ Info 34 [00:00:57.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 35 [00:00:58.000] getExportInfoMap: cache hit After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 36 [00:00:59.000] response: { "response": [ @@ -373,33 +309,9 @@ Info 37 [00:01:00.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 38 [00:01:01.000] getExportInfoMap: cache hit After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 39 [00:01:02.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js index 2033dd2711342..ce07b3b5eadf7 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js +++ b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js @@ -23,12 +23,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:24.000] Search path: /a/b/projects/project/src Info 2 [00:00:25.000] For info: /a/b/projects/project/src/file1.ts :: Config file name: /a/b/projects/project/src/tsconfig.json Info 3 [00:00:26.000] Creating configuration project /a/b/projects/project/src/tsconfig.json @@ -97,14 +91,10 @@ Info 33 [00:01:03.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project Before running timeout callbacks //// [/a/b/projects/project/src/tsconfig.json] deleted -PolledWatches:: - FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 34 [00:01:04.500] Running: *ensureProjectForOpenFiles* Info 35 [00:01:05.500] Before ensureProjectForOpenFiles: Info 36 [00:01:06.500] Open files: @@ -141,19 +131,17 @@ Info 48 [00:01:26.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: -/a/b/projects/project/src/tsconfig.json: +/a/b/projects/project/src/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: +/a/b/projects/project/src/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/tsconfig.json: +/a/b/projects/project/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: +/a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/node_modules/@types: +/a/b/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js index e8b4d7f4e24c7..9694818a2f009 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js +++ b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js @@ -23,12 +23,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:24.000] Search path: /a/b/projects/project/src Info 2 [00:00:25.000] For info: /a/b/projects/project/src/file1.ts :: Config file name: /a/b/projects/project/src/tsconfig.json Info 3 [00:00:26.000] Creating configuration project /a/b/projects/project/src/tsconfig.json @@ -97,14 +91,10 @@ Info 33 [00:01:03.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project Before running timeout callbacks //// [/a/b/projects/project/src/tsconfig.json] deleted -PolledWatches:: - FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 34 [00:01:04.500] Running: *ensureProjectForOpenFiles* Info 35 [00:01:05.500] Before ensureProjectForOpenFiles: Info 36 [00:01:06.500] Open files: @@ -143,21 +133,19 @@ Info 50 [00:01:28.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: -/a/b/projects/project/src/tsconfig.json: +/a/b/projects/project/src/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: +/a/b/projects/project/src/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/tsconfig.json: +/a/b/projects/project/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: +/a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/node_modules/@types: +/a/b/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/project/node_modules/@types: +/a/b/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} - -FsWatchesRecursive:: 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 658511104d725..a3341e89daaf6 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 @@ -17,12 +17,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:20.000] Search path: /a/b/projects/project/src Info 2 [00:00:21.000] For info: /a/b/projects/project/src/index.ts :: No config files found. Info 3 [00:00:22.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -74,25 +68,23 @@ Before running timeout callbacks PolledWatches:: -/a/b/projects/project/src/tsconfig.json: +/a/b/projects/project/src/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: +/a/b/projects/project/src/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: +/a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/node_modules/@types: +/a/b/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/project/node_modules/@types: +/a/b/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/a/b/projects/project/tsconfig.json: +/a/b/projects/project/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 30 [00:00:57.000] Running: /a/b/projects/project/tsconfig.json Info 31 [00:00:58.000] Loading configured project /a/b/projects/project/tsconfig.json Info 32 [00:00:59.000] Config: /a/b/projects/project/tsconfig.json : { @@ -165,6 +157,14 @@ PolledWatches:: /a/b/projects/project/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/a/b/projects/project/src/tsconfig.json: + {"pollingInterval":2000} +/a/b/projects/project/src/jsconfig.json: + {"pollingInterval":2000} +/a/b/projects/project/jsconfig.json: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} @@ -172,7 +172,7 @@ FsWatches:: {} FsWatchesRecursive:: -/a/b/projects/project: +/a/b/projects/project: *new* {} Info 53 [00:01:39.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -211,7 +211,13 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/projects/project/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/a/b/projects/project: + {} Info 67 [00:01:53.500] Running: *ensureProjectForOpenFiles* Info 68 [00:01:54.500] Before ensureProjectForOpenFiles: @@ -255,17 +261,15 @@ PolledWatches:: {"pollingInterval":500} /a/b/projects/project/node_modules/@types: {"pollingInterval":500} -/a/b/projects/project/src/tsconfig.json: +/a/b/projects/project/src/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: +/a/b/projects/project/src/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/tsconfig.json: +/a/b/projects/project/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: +/a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: {} - -FsWatchesRecursive:: 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 8e7998e79fced..94c97a918dd17 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 @@ -20,12 +20,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:22.000] Search path: /a/b/projects/project/src Info 2 [00:00:23.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json Info 3 [00:00:24.000] Creating configuration project /a/b/projects/project/tsconfig.json @@ -90,14 +84,10 @@ Info 29 [00:00:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] deleted -PolledWatches:: - FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 30 [00:00:58.500] Running: *ensureProjectForOpenFiles* Info 31 [00:00:59.500] Before ensureProjectForOpenFiles: Info 32 [00:01:00.500] Open files: @@ -136,25 +126,23 @@ Info 46 [00:01:22.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: -/a/b/projects/project/src/tsconfig.json: +/a/b/projects/project/src/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/jsconfig.json: +/a/b/projects/project/src/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/tsconfig.json: +/a/b/projects/project/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/jsconfig.json: +/a/b/projects/project/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/project/src/node_modules/@types: +/a/b/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} -/a/b/projects/project/node_modules/@types: +/a/b/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: - Info 46 [00:01:25.500] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info 47 [00:01:26.500] Search path: /a/b/projects/project/src Info 48 [00:01:27.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json @@ -185,14 +173,16 @@ PolledWatches:: /a/b/projects/project/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/a/b/projects/project/tsconfig.json: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} -/a/b/projects/project/tsconfig.json: +/a/b/projects/project/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 59 [00:01:38.500] Running: /a/b/projects/project/tsconfig.json Info 60 [00:01:39.500] Loading configured project /a/b/projects/project/tsconfig.json Info 61 [00:01:40.500] Config: /a/b/projects/project/tsconfig.json : { @@ -265,6 +255,14 @@ PolledWatches:: /a/b/projects/project/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/a/b/projects/project/src/tsconfig.json: + {"pollingInterval":2000} +/a/b/projects/project/src/jsconfig.json: + {"pollingInterval":2000} +/a/b/projects/project/jsconfig.json: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} @@ -272,5 +270,5 @@ FsWatches:: {} FsWatchesRecursive:: -/a/b/projects/project: +/a/b/projects/project: *new* {} diff --git a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js index f3fc8f100f6a1..4bc7b5747cdc2 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js +++ b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js @@ -17,12 +17,6 @@ interface Array { length: number; [n: number]: T; } const x = 10 -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:24.000] Search path: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace Info 2 [00:00:25.000] For info: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js :: No config files found. Info 3 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root diff --git a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js index 2590b006d0639..9c076d66562e2 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js +++ b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js @@ -17,12 +17,6 @@ interface Array { length: number; [n: number]: T; } const x = 10 -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:24.000] Search path: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace Info 2 [00:00:25.000] For info: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js :: No config files found. Info 3 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root diff --git a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js index 23e0280b16ace..29361772b0c86 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js +++ b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js @@ -16,12 +16,6 @@ let z = 1; {"files":["src/file1.ts","file3.ts"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:20.000] Search path: /a/b/src Info 2 [00:00:21.000] For info: /a/b/src/file1.ts :: Config file name: /a/b/tsconfig.json Info 3 [00:00:22.000] Creating configuration project /a/b/tsconfig.json @@ -157,21 +151,19 @@ Before running timeout callbacks PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} -/a/b/src/node_modules/@types: +/a/b/src/node_modules/@types: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 45 [00:01:55.000] Running: /a/b/tsconfig.json Info 46 [00:01:56.000] Reloading configured project /a/b/tsconfig.json Info 47 [00:01:57.000] Config: /a/b/tsconfig.json : { @@ -274,7 +266,7 @@ FsWatches:: {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 64 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info @@ -392,14 +384,18 @@ PolledWatches:: /a/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/a/b/src/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/b/tsconfig.json: {} -/a/b/src/file1.ts: +/a/b/src/file1.ts: *new* {} -/a/b/src/file2.ts: +/a/b/src/file2.ts: *new* {} -/a/b/file3.ts: +/a/b/file3.ts: *new* {} FsWatchesRecursive:: 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 f2b9daa9cf453..f66cfe6a7bfe7 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 @@ -20,12 +20,6 @@ let x = 1 let y = 1 -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:22.000] Search path: /user/username/projects/myproject Info 2 [00:00:23.000] For info: /user/username/projects/myproject/commonFile1.ts :: No config files found. Info 3 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -110,19 +104,17 @@ Before checking timeout queue length (2) and running PolledWatches:: -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 39 [00:01:19.000] Running: /user/username/projects/myproject/tsconfig.json Info 40 [00:01:20.000] Loading configured project /user/username/projects/myproject/tsconfig.json Info 41 [00:01:21.000] Config: /user/username/projects/myproject/tsconfig.json : { @@ -196,20 +188,6 @@ Info 57 [00:02:03.000] FileName: /user/username/projects/myproject/commonFile Info 57 [00:02:04.000] Projects: /dev/null/inferredProject2* After checking timeout queue length (2) and running -PolledWatches:: -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 57 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info 58 [00:02:07.000] `remove Project:: Info 59 [00:02:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) @@ -235,20 +213,6 @@ Info 69 [00:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/userna Before checking timeout queue length (1) and running //// [/user/username/projects/myproject/tsconfig.json] deleted -PolledWatches:: -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 70 [00:02:19.500] Running: *ensureProjectForOpenFiles* Info 71 [00:02:20.500] Before ensureProjectForOpenFiles: Info 72 [00:02:21.500] Project '/dev/null/inferredProject1*' (Inferred) @@ -293,17 +257,3 @@ Info 78 [00:02:46.500] Projects: /dev/null/inferredProject1* Info 78 [00:02:47.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined Info 78 [00:02:48.500] Projects: /dev/null/inferredProject2* After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js index fbf4375019c1b..4a7b17d8abad9 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js @@ -20,12 +20,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:16.000] Search path: /a/b Info 2 [00:00:17.000] For info: /a/b/commonFile1.ts :: Config file name: /a/b/tsconfig.json Info 3 [00:00:18.000] Creating configuration project /a/b/tsconfig.json @@ -74,17 +68,17 @@ let y = 1 PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 20 [00:00:43.000] Running: /a/b/tsconfig.json @@ -134,7 +128,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/commonfile2.ts: +/a/b/commonfile2.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js b/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js index fb82b61f4131b..5bfde58471965 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js @@ -23,12 +23,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:18.000] Search path: /a/b Info 2 [00:00:19.000] For info: /a/b/file1.ts :: Config file name: /a/b/tsconfig.json Info 3 [00:00:20.000] Creating configuration project /a/b/tsconfig.json @@ -81,60 +75,26 @@ export classc { method2() { return 10; } } PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/file2.ts: +/a/file2.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/a/b: +/a/b: *new* {} -FsWatchesRecursive:: - Info 20 [00:00:45.000] Running: /a/b/tsconfig.jsonFailedLookupInvalidation Info 21 [00:00:46.000] Scheduled: /a/b/tsconfig.json Info 22 [00:00:47.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/file2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b: - {} - -FsWatchesRecursive:: - Before running timeout callbacks -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/file2.ts: - {} -/a/lib/lib.d.ts: - {} -/a/b: - {} - -FsWatchesRecursive:: - Info 23 [00:00:48.000] Running: /a/b/tsconfig.json Info 24 [00:00:49.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json Info 25 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info @@ -186,10 +146,12 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/file2.ts: +/a/b/file2.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b: + {} Info 35 [00:01:12.000] FileWatcher:: Close:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:13.000] Search path: /a/b diff --git a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js index e933d0b30589d..5a8efde6fdf43 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js @@ -30,12 +30,6 @@ let y = 1 let z = 1 -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:22.000] Search path: /a/b Info 2 [00:00:23.000] For info: /a/b/f1.ts :: Config file name: /a/b/tsconfig.json Info 3 [00:00:24.000] Creating configuration project /a/b/tsconfig.json diff --git a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js index eca0b717701a3..619a1d1898dad 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js @@ -32,12 +32,6 @@ let y = 1 let z = 1 -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:26.000] Search path: /a/b/c Info 2 [00:00:27.000] For info: /a/b/c/f1.ts :: Config file name: /a/b/tsconfig.json Info 3 [00:00:28.000] Creating configuration project /a/b/tsconfig.json diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js index 200a83f9988e2..4a787669f969f 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"],"exclude":["./src/sub"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -132,22 +126,6 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 27 [00:01:02.000] Search path: /user/username/projects/myproject/src/sub Info 28 [00:01:03.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 29 [00:01:04.000] event: @@ -195,19 +173,19 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: +/user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -241,530 +219,50 @@ Info 47 [00:01:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 48 [00:01:34.000] response: { "responseRequired": false } Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 50 [00:01:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one.js index 6070a32d7a4ea..09948339c3b9e 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -133,22 +127,6 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 28 [00:01:03.000] Search path: /user/username/projects/myproject/src/sub Info 29 [00:01:04.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 30 [00:01:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json @@ -182,22 +160,6 @@ Info 35 [00:01:16.000] FileName: /user/username/projects/myproject/src/sub/fo Info 35 [00:01:17.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 35 [00:01:18.000] response: { "responseRequired": false @@ -217,306 +179,50 @@ Info 36 [00:01:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 37 [00:01:20.000] response: { "responseRequired": false } Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 38 [00:01:21.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 41 [00:01:24.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 42 [00:01:25.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 43 [00:01:26.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Info 44 [00:01:27.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js index 89ba251e7c689..1ab41cdd15dfb 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"],"exclude":["./src/sub"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -132,22 +126,6 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 27 [00:01:02.000] Search path: /user/username/projects/myproject/src/sub Info 28 [00:01:03.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 29 [00:01:04.000] event: @@ -195,19 +173,19 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: +/user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -241,530 +219,50 @@ Info 47 [00:01:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 48 [00:01:34.000] response: { "responseRequired": false } Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 50 [00:01:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one.js index 50e9b0037ac7a..0c5c3558afb78 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -133,22 +127,6 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 28 [00:01:03.000] Search path: /user/username/projects/myproject/src/sub Info 29 [00:01:04.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 30 [00:01:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json @@ -182,22 +160,6 @@ Info 35 [00:01:16.000] FileName: /user/username/projects/myproject/src/sub/fo Info 35 [00:01:17.000] Projects: /user/username/projects/myproject/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 35 [00:01:18.000] response: { "responseRequired": false @@ -217,306 +179,50 @@ Info 36 [00:01:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 37 [00:01:20.000] response: { "responseRequired": false } Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 38 [00:01:21.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 41 [00:01:24.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 42 [00:01:25.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 43 [00:01:26.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Info 44 [00:01:27.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js index b2362175f6544..e7f8946da65fa 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"],"exclude":["./src/sub"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -126,22 +120,6 @@ Info 23 [00:00:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 24 [00:00:57.000] Search path: /user/username/projects/myproject/src/sub Info 25 [00:00:58.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 26 [00:00:59.000] event: @@ -189,19 +167,19 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: +/user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -241,530 +219,50 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 48 [00:01:34.000] response: { "responseRequired": false } Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 50 [00:01:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js index 2c97c5b081e5d..bb34f63acb103 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -126,22 +120,6 @@ Info 23 [00:00:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 24 [00:00:57.000] Search path: /user/username/projects/myproject/src/sub Info 25 [00:00:58.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 26 [00:00:59.000] event: @@ -189,19 +167,19 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: +/user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -242,136 +220,16 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:35.000] response: { "responseRequired": false } Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 50 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info 51 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info 52 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -409,6 +267,18 @@ PolledWatches:: /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/src/sub/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/src/sub/jsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/src/jsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/jsconfig.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -423,254 +293,34 @@ FsWatchesRecursive:: Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 63 [00:01:49.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 64 [00:01:50.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js index 0c720bf38fa2b..d8951a12ffbd3 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"],"exclude":["./src/sub"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -126,22 +120,6 @@ Info 23 [00:00:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 24 [00:00:57.000] Search path: /user/username/projects/myproject/src/sub Info 25 [00:00:58.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 26 [00:00:59.000] event: @@ -189,19 +167,19 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: +/user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -241,530 +219,50 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 48 [00:01:34.000] response: { "responseRequired": false } Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 50 [00:01:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 1 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback2 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js index c32d351fe27d2..7ccea7262eb67 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"include":["./src"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -94,19 +88,19 @@ Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src/bar.ts: +/user/username/projects/myproject/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 22 [00:00:55.000] response: @@ -126,22 +120,6 @@ Info 23 [00:00:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 24 [00:00:57.000] Search path: /user/username/projects/myproject/src/sub Info 25 [00:00:58.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 26 [00:00:59.000] event: @@ -189,19 +167,19 @@ After request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: +/user/username/projects/myproject/src/sub/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: +/user/username/projects/myproject/src/sub/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: +/user/username/projects/myproject/src/sub/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -242,366 +220,36 @@ Before request export function fooBar() { } -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:35.000] response: { "responseRequired": false } Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 50 [00:01:36.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callback4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 53 [00:01:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info 54 [00:01:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info 55 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -639,6 +287,18 @@ PolledWatches:: /user/username/projects/myproject/src/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/src/sub/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/src/sub/jsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/src/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/src/jsconfig.json: + {"pollingInterval":2000} +/user/username/projects/myproject/jsconfig.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -653,94 +313,14 @@ FsWatchesRecursive:: Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 64 [00:01:50.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/sub/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src/bar.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js b/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js index 396c659063724..b8367efb8f3f5 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js +++ b/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js @@ -30,12 +30,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:44.000] Search path: /user/username/rootfolder/a/b/src Info 2 [00:00:45.000] For info: /user/username/rootfolder/a/b/src/file1.ts :: Config file name: /user/username/rootfolder/a/b/src/tsconfig.json Info 3 [00:00:46.000] Creating configuration project /user/username/rootfolder/a/b/src/tsconfig.json diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js b/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js index 8ebabcd33a957..c56d993f09ab2 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js @@ -25,12 +25,6 @@ let dummy = 1; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:36.000] Search path: /user/username/projects/myproject/a Info 2 [00:00:37.000] For info: /user/username/projects/myproject/a/a.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 3 [00:00:38.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js b/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js index 2ea5cc58cac77..5a63e272f909b 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js @@ -19,12 +19,6 @@ let a = 1; let b = 1; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:30.000] Search path: /user/username/projects/myproject/a Info 2 [00:00:31.000] For info: /user/username/projects/myproject/a/a.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 3 [00:00:32.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -114,27 +108,25 @@ Before checking timeout queue length (3) and running PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: +/user/username/projects/myproject/extended/alpha.tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/extended/bravo.tsconfig.json: +/user/username/projects/myproject/extended/bravo.tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 38 [00:01:27.000] Running: /user/username/projects/myproject/a/tsconfig.json Info 39 [00:01:28.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json Info 40 [00:01:29.000] Config: /user/username/projects/myproject/a/tsconfig.json : { @@ -194,28 +186,6 @@ Info 53 [00:02:02.000] FileName: /user/username/projects/myproject/b/b.ts Pro Info 53 [00:02:03.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (3) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/extended/bravo.tsconfig.json: - {} - -FsWatchesRecursive:: - Info 53 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file Info 54 [00:02:08.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json Info 55 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* @@ -225,28 +195,6 @@ Before checking timeout queue length (2) and running {"extends":"./alpha.tsconfig.json","compilerOptions":{"strict":false}} -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/extended/bravo.tsconfig.json: - {} - -FsWatchesRecursive:: - Info 57 [00:02:11.000] Running: /user/username/projects/myproject/b/tsconfig.json Info 58 [00:02:12.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json Info 59 [00:02:13.000] Config: /user/username/projects/myproject/b/tsconfig.json : { @@ -292,28 +240,6 @@ Info 66 [00:02:40.000] FileName: /user/username/projects/myproject/b/b.ts Pro Info 66 [00:02:41.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (2) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/extended/bravo.tsconfig.json: - {} - -FsWatchesRecursive:: - Info 66 [00:02:45.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file Info 67 [00:02:46.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json Info 68 [00:02:47.000] Scheduled: *ensureProjectForOpenFiles* @@ -323,28 +249,6 @@ Before checking timeout queue length (2) and running {"extends":"../extended/alpha.tsconfig.json"} -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/extended/bravo.tsconfig.json: - {} - -FsWatchesRecursive:: - Info 70 [00:02:49.000] Running: /user/username/projects/myproject/b/tsconfig.json Info 71 [00:02:50.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json Info 72 [00:02:51.000] Config: /user/username/projects/myproject/b/tsconfig.json : { @@ -411,8 +315,12 @@ FsWatches:: /user/username/projects/myproject/b/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/extended/bravo.tsconfig.json: + {} + FsWatchesRecursive:: -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 82 [00:03:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file @@ -425,28 +333,6 @@ Before checking timeout queue length (3) and running {} -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/b: - {} - Info 87 [00:03:31.000] Running: /user/username/projects/myproject/a/tsconfig.json Info 88 [00:03:32.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json Info 89 [00:03:33.000] Config: /user/username/projects/myproject/a/tsconfig.json : { @@ -503,25 +389,3 @@ Info 102 [00:04:05.000] Projects: /user/username/projects/myproject/a/tsconfi Info 102 [00:04:06.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined Info 102 [00:04:07.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (3) and running - -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/extended/alpha.tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/b: - {} diff --git a/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js b/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js index e148f73c2eef4..7ef997c19c869 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js +++ b/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js @@ -47,12 +47,6 @@ declare var console: { }; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/foo Info 3 [00:00:38.000] For info: /user/username/projects/myproject/foo/index.ts :: Config file name: /user/username/projects/myproject/foo/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/foo/tsconfig.json @@ -111,21 +105,21 @@ Info 24 [00:01:04.000] Projects: /user/username/projects/myproject/foo/tscon After request PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: +/user/username/projects/myproject/foo/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: +/user/username/projects/myproject/foo/tsconfig.json: *new* {} -/user/username/projects/myproject/bar/index.ts: +/user/username/projects/myproject/bar/index.ts: *new* {} -/a/lib/lib.es2017.d.ts: +/a/lib/lib.es2017.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: +/user/username/projects/myproject/foo/node_modules: *new* {} Info 24 [00:01:05.000] response: @@ -143,24 +137,6 @@ Info 25 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/user/username/projects/myproject/bar/index.ts: - {} -/a/lib/lib.es2017.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 26 [00:01:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info Info 27 [00:01:08.000] Search path: /user/username/projects/myproject/bar Info 28 [00:01:09.000] For info: /user/username/projects/myproject/bar/index.ts :: Config file name: /user/username/projects/myproject/bar/tsconfig.json @@ -228,7 +204,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: +/user/username/projects/myproject/bar/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,9 +212,13 @@ FsWatches:: {} /a/lib/lib.es2017.d.ts: {} -/user/username/projects/myproject/bar/tsconfig.json: +/user/username/projects/myproject/bar/tsconfig.json: *new* {} -/a/lib/lib.dom.d.ts: +/a/lib/lib.dom.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/bar/index.ts: {} FsWatchesRecursive:: @@ -264,354 +244,46 @@ Info 47 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 48 [00:01:40.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 49 [00:01:41.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/bar/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 50 [00:01:42.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/bar/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 51 [00:01:43.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/bar/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 52 [00:01:44.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/foo/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 53 [00:01:45.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/foo/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} - Info 54 [00:01:46.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/foo/index.ts","diagnostics":[]}} Info 55 [00:01:47.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/foo/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bar/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/foo/tsconfig.json: - {} -/a/lib/lib.es2017.d.ts: - {} -/user/username/projects/myproject/bar/tsconfig.json: - {} -/a/lib/lib.dom.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/foo/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js b/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js index 715bdd14e4a2b..679f7b2ee7e61 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js @@ -43,12 +43,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user Info 3 [00:00:34.000] For info: /user/user.ts :: No config files found. Info 4 [00:00:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -83,19 +77,17 @@ Info 14 [00:00:50.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: - Info 14 [00:00:51.000] response: { "responseRequired": false @@ -113,20 +105,6 @@ Info 15 [00:00:52.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 16 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -141,11 +119,9 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -FsWatchesRecursive:: - Info 17 [00:00:54.000] response: { "response": { @@ -196,22 +172,6 @@ Info 18 [00:00:55.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} - -FsWatchesRecursive:: - Info 19 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /b/bin/b.d.ts.map 500 undefined WatchType: Closed Script info Info 20 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info After request @@ -229,13 +189,11 @@ FsWatches:: {} /a/bin/a.d.ts.map: {} -/b/bin/b.d.ts.map: +/b/bin/b.d.ts.map: *new* {} -/b/b.ts: +/b/b.ts: *new* {} -FsWatchesRecursive:: - Info 21 [00:00:58.000] response: { "response": { @@ -284,26 +242,6 @@ Info 22 [00:00:59.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/b/bin/b.d.ts.map: - {} -/b/b.ts: - {} - -FsWatchesRecursive:: - Info 23 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 24 [00:01:01.000] Project '/dev/null/inferredProject1*' (Inferred) Info 24 [00:01:02.000] Files (3) @@ -329,11 +267,9 @@ FsWatches:: {} /b/b.ts: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 24 [00:01:05.000] response: { "responseRequired": false @@ -349,28 +285,6 @@ Info 25 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/b/bin/b.d.ts.map: - {} -/b/b.ts: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 26 [00:01:07.000] Search path: /dummy Info 27 [00:01:08.000] For info: /dummy/dummy.ts :: No config files found. Info 28 [00:01:09.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -424,12 +338,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/b/bin/b.d.ts.map: + {} +/b/b.ts: + {} +/user/user.ts: + {} Info 49 [00:01:36.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js index 3800542b05a2a..d2fc01bad1900 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -470,20 +448,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] Search path: /a Info 89 [00:02:31.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 90 [00:02:32.000] Creating configuration project /a/tsconfig.json @@ -538,7 +502,7 @@ PolledWatches:: {"pollingInterval":500} /user/node_modules/@types: {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -546,11 +510,11 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 105 [00:02:58.000] response: @@ -570,26 +534,6 @@ Info 106 [00:02:59.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 107 [00:03:00.000] Finding references to /a/a.ts position 16 in project /a/tsconfig.json Info 108 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 109 [00:03:02.000] Finding references to /a/bin/a.d.ts position 24 in project /dev/null/inferredProject1* @@ -614,7 +558,7 @@ FsWatches:: {} /a/tsconfig.json: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} FsWatchesRecursive:: @@ -679,28 +623,6 @@ Info 115 [00:03:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/tsconfig.json: - {} -/a/bin/a.d.ts.map: - {} - -FsWatchesRecursive:: -/a: - {} - Info 116 [00:03:09.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 117 [00:03:10.000] Project '/a/tsconfig.json' (Configured) Info 117 [00:03:11.000] Files (1) @@ -732,7 +654,7 @@ FsWatches:: {} /a/bin/a.d.ts.map: {} -/user/user.ts: +/user/user.ts: *new* {} FsWatchesRecursive:: @@ -754,30 +676,6 @@ Info 118 [00:03:20.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/tsconfig.json: - {} -/a/bin/a.d.ts.map: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 119 [00:03:21.000] Search path: /dummy Info 120 [00:03:22.000] For info: /dummy/dummy.ts :: No config files found. Info 121 [00:03:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -835,7 +733,11 @@ PolledWatches:: {"pollingInterval":500} /a/node_modules/@types: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/user/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -846,6 +748,12 @@ FsWatches:: /a/bin/a.d.ts.map: {} +FsWatches *deleted*:: +/b/bin/b.d.ts: + {} +/user/user.ts: + {} + FsWatchesRecursive:: /a: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js index 981526f9c3d00..a6951aad763c6 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] Finding references to /user/user.ts position 104 in project /dev/null/inferredProject1* Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /b/bin/b.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -501,11 +465,9 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/b/bin/b.d.ts.map: +/b/bin/b.d.ts.map: *new* {} -FsWatchesRecursive:: - Info 90 [00:02:32.000] response: { "response": { @@ -562,22 +524,6 @@ Info 91 [00:02:33.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/b/bin/b.d.ts.map: - {} - -FsWatchesRecursive:: - Info 92 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 93 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) Info 93 [00:02:36.000] Files (3) @@ -599,11 +545,9 @@ FsWatches:: {} /b/bin/b.d.ts.map: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 93 [00:02:39.000] response: { "responseRequired": false @@ -619,24 +563,6 @@ Info 94 [00:02:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/b/bin/b.d.ts.map: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 95 [00:02:41.000] Search path: /dummy Info 96 [00:02:42.000] For info: /dummy/dummy.ts :: No config files found. Info 97 [00:02:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -688,12 +614,22 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/b/bin/b.d.ts.map: + {} +/user/user.ts: + {} Info 116 [00:03:08.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js index fa1e008e083a3..9209addf83de7 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] Finding references to /user/user.ts position 95 in project /dev/null/inferredProject1* Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 90 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info @@ -531,7 +495,7 @@ PolledWatches:: {"pollingInterval":500} /user/node_modules/@types: {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -539,15 +503,15 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 109 [00:02:51.000] response: @@ -606,30 +570,6 @@ Info 110 [00:02:52.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 111 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 112 [00:02:54.000] Project '/a/tsconfig.json' (Configured) Info 112 [00:02:55.000] Files (1) @@ -661,7 +601,7 @@ FsWatches:: {} /a/tsconfig.json: {} -/user/user.ts: +/user/user.ts: *new* {} FsWatchesRecursive:: @@ -683,32 +623,6 @@ Info 113 [00:03:02.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 114 [00:03:03.000] Search path: /dummy Info 115 [00:03:04.000] For info: /dummy/dummy.ts :: No config files found. Info 116 [00:03:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -777,12 +691,32 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} +/a/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/a/tsconfig.json: + {} +/user/user.ts: + {} + +FsWatchesRecursive *deleted*:: +/a: + {} Info 146 [00:03:41.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js index e6b3c328a6cfb..915f8bb470c38 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js @@ -29,12 +29,6 @@ declare function f(): void; {"version":3,"file":"a.d.ts","sourceRoot":"","sources":["../a/a.ts"],"names":[],"mappings":"AAAA,iBAAS,CAAC,SAAK"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:23.000] Search path: /a Info 3 [00:00:24.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:25.000] Creating configuration project /a/tsconfig.json @@ -76,17 +70,17 @@ Info 17 [00:00:43.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 17 [00:00:44.000] response: @@ -120,20 +114,6 @@ Info 18 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 19 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 20 [00:00:47.000] Project '/a/tsconfig.json' (Configured) Info 20 [00:00:48.000] Files (1) @@ -151,7 +131,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -173,22 +153,6 @@ Info 21 [00:00:52.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 22 [00:00:53.000] Search path: /b Info 23 [00:00:54.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 24 [00:00:55.000] Creating configuration project /b/tsconfig.json @@ -244,7 +208,7 @@ PolledWatches:: {"pollingInterval":500} /a/node_modules/@types: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -252,13 +216,13 @@ FsWatches:: {} /a/a.ts: {} -/b/tsconfig.json: +/b/tsconfig.json: *new* {} FsWatchesRecursive:: /a: {} -/b: +/b: *new* {} Info 37 [00:01:17.000] response: @@ -278,28 +242,6 @@ Info 38 [00:01:18.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/b: - {} - Info 39 [00:01:19.000] Finding references to /b/b.ts position 0 in project /b/tsconfig.json Info 40 [00:01:20.000] Search path: /a Info 41 [00:01:21.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json @@ -308,28 +250,6 @@ Info 43 [00:01:23.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 44 [00:01:24.000] Finding references to /a/a.ts position 9 in project /a/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/b: - {} - Info 45 [00:01:25.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js index ce4949d3e6ea9..08c8618f2f9c3 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] Finding references to /user/user.ts position 95 in project /dev/null/inferredProject1* Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 90 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info @@ -531,7 +495,7 @@ PolledWatches:: {"pollingInterval":500} /user/node_modules/@types: {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -539,15 +503,15 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 109 [00:02:51.000] response: @@ -640,30 +604,6 @@ Info 110 [00:02:52.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 111 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 112 [00:02:54.000] Project '/a/tsconfig.json' (Configured) Info 112 [00:02:55.000] Files (1) @@ -695,7 +635,7 @@ FsWatches:: {} /a/tsconfig.json: {} -/user/user.ts: +/user/user.ts: *new* {} FsWatchesRecursive:: @@ -717,32 +657,6 @@ Info 113 [00:03:02.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 114 [00:03:03.000] Search path: /dummy Info 115 [00:03:04.000] For info: /dummy/dummy.ts :: No config files found. Info 116 [00:03:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -811,12 +725,32 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} +/a/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/a/tsconfig.json: + {} +/user/user.ts: + {} + +FsWatchesRecursive *deleted*:: +/a: + {} Info 146 [00:03:41.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js index c5497f2cf279f..bb04774b2dd8d 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js @@ -52,12 +52,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:39.000] Search path: /a Info 3 [00:00:40.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:41.000] Creating configuration project /a/tsconfig.json @@ -102,17 +96,17 @@ Info 19 [00:01:01.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:02.000] response: @@ -146,20 +140,6 @@ Info 20 [00:01:03.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:05.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:06.000] Files (1) @@ -177,7 +157,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -199,22 +179,6 @@ Info 23 [00:01:10.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:11.000] Search path: /b Info 25 [00:01:12.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:13.000] Creating configuration project /b/tsconfig.json @@ -278,15 +242,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:45.000] response: @@ -320,20 +298,6 @@ Info 53 [00:01:46.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:48.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:49.000] Files (1) @@ -351,7 +315,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -391,6 +355,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -470,25 +438,25 @@ PolledWatches:: {"pollingInterval":500} /b/node_modules/@types: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: /b/tsconfig.json: {} -/user/tsconfig.json: +/user/tsconfig.json: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: /b: {} -/user: +/user: *new* {} -/a: +/a: *new* {} Info 84 [00:02:31.000] response: @@ -508,60 +476,8 @@ Info 85 [00:02:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - Info 86 [00:02:33.000] response: { "response": { @@ -610,32 +526,6 @@ Info 87 [00:02:34.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - Info 88 [00:02:35.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 89 [00:02:36.000] Project '/b/tsconfig.json' (Configured) Info 89 [00:02:37.000] Files (1) @@ -665,7 +555,7 @@ FsWatches:: {} /a/a.ts: {} -/user/user.ts: +/user/user.ts: *new* {} FsWatchesRecursive:: @@ -691,34 +581,6 @@ Info 90 [00:02:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - Info 91 [00:02:45.000] FileWatcher:: Close:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 92 [00:02:46.000] Search path: /a Info 93 [00:02:47.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json @@ -763,7 +625,7 @@ PolledWatches:: {"pollingInterval":500} /user/node_modules/@types: {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -776,6 +638,10 @@ FsWatches:: /user/user.ts: {} +FsWatches *deleted*:: +/a/a.ts: + {} + FsWatchesRecursive:: /b: {} @@ -799,34 +665,6 @@ Info 106 [00:03:12.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - Info 107 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 108 [00:03:14.000] Project '/b/tsconfig.json' (Configured) Info 108 [00:03:15.000] Files (1) @@ -862,7 +700,7 @@ FsWatches:: {} /user/user.ts: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -888,36 +726,6 @@ Info 109 [00:03:25.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/user/user.ts: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - Info 110 [00:03:26.000] Search path: /dummy Info 111 [00:03:27.000] For info: /dummy/dummy.ts :: No config files found. Info 112 [00:03:28.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -999,12 +807,36 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/b/node_modules/@types: + {"pollingInterval":500} +/user/node_modules/@types: + {"pollingInterval":500} +/a/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} +/user/tsconfig.json: + {} +/a/tsconfig.json: + {} +/user/user.ts: + {} +/a/a.ts: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} +/user: + {} +/a: + {} Info 152 [00:04:14.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js index 7333963d87ac4..1e3b5c2193aae 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info After request @@ -501,13 +465,11 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -FsWatchesRecursive:: - Info 90 [00:02:32.000] response: { "response": { @@ -556,24 +518,6 @@ Info 91 [00:02:33.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: - Info 92 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 93 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) Info 93 [00:02:36.000] Files (3) @@ -597,11 +541,9 @@ FsWatches:: {} /a/a.ts: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 93 [00:02:39.000] response: { "responseRequired": false @@ -617,26 +559,6 @@ Info 94 [00:02:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 95 [00:02:41.000] Search path: /dummy Info 96 [00:02:42.000] For info: /dummy/dummy.ts :: No config files found. Info 97 [00:02:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -689,12 +611,24 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/user/user.ts: + {} Info 117 [00:03:09.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js index 7892107078a55..d16505113f755 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js @@ -22,12 +22,6 @@ Before request {"compilerOptions":{"composite":true,"outDir":"./build"},"include":["./src"],"references":[{"path":"../a"}]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/src Info 3 [00:00:22.000] For info: /a/src/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/tsconfig.json @@ -72,17 +66,17 @@ Info 19 [00:00:43.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:00:44.000] response: @@ -100,20 +94,6 @@ Info 20 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:00:46.000] Search path: /b/src Info 22 [00:00:47.000] For info: /b/src/b.ts :: Config file name: /b/tsconfig.json Info 23 [00:00:48.000] Creating configuration project /b/tsconfig.json @@ -172,19 +152,19 @@ PolledWatches:: {"pollingInterval":500} /a/node_modules/@types: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: /a/tsconfig.json: {} -/b/tsconfig.json: +/b/tsconfig.json: *new* {} FsWatchesRecursive:: /a: {} -/b/src: +/b/src: *new* {} Info 38 [00:01:14.000] response: @@ -203,48 +183,8 @@ Info 39 [00:01:15.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/b/src: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/b/src: - {} - Info 40 [00:01:16.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js index 53f0205b6ace8..d99e5a61f9d24 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -471,20 +449,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 90 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /b/bin/b.d.ts.map 500 undefined WatchType: Closed Script info @@ -501,15 +465,13 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts.map: +/b/bin/b.d.ts.map: *new* {} -FsWatchesRecursive:: - Info 91 [00:02:33.000] response: { "response": [ @@ -543,26 +505,6 @@ Info 92 [00:02:34.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/b/bin/b.d.ts.map: - {} - -FsWatchesRecursive:: - Info 93 [00:02:35.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 94 [00:02:36.000] Project '/dev/null/inferredProject1*' (Inferred) Info 94 [00:02:37.000] Files (3) @@ -588,11 +530,9 @@ FsWatches:: {} /b/bin/b.d.ts.map: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 94 [00:02:40.000] response: { "responseRequired": false @@ -608,28 +548,6 @@ Info 95 [00:02:41.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/b/bin/b.d.ts.map: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 96 [00:02:42.000] Search path: /dummy Info 97 [00:02:43.000] For info: /dummy/dummy.ts :: No config files found. Info 98 [00:02:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -683,12 +601,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/b/bin/b.d.ts.map: + {} +/user/user.ts: + {} Info 119 [00:03:11.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js index e141121a13629..278c7b5f669ee 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /b/bin/b.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -500,11 +464,9 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/b/bin/b.d.ts.map: +/b/bin/b.d.ts.map: *new* {} -FsWatchesRecursive:: - Info 89 [00:02:31.000] response: { "response": [ @@ -541,22 +503,6 @@ Info 90 [00:02:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/b/bin/b.d.ts.map: - {} - -FsWatchesRecursive:: - Info 91 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 92 [00:02:34.000] Project '/dev/null/inferredProject1*' (Inferred) Info 92 [00:02:35.000] Files (3) @@ -578,11 +524,9 @@ FsWatches:: {} /b/bin/b.d.ts.map: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 92 [00:02:38.000] response: { "responseRequired": false @@ -598,24 +542,6 @@ Info 93 [00:02:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/b/bin/b.d.ts.map: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 94 [00:02:40.000] Search path: /dummy Info 95 [00:02:41.000] For info: /dummy/dummy.ts :: No config files found. Info 96 [00:02:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -667,12 +593,22 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/b/bin/b.d.ts.map: + {} +/user/user.ts: + {} Info 115 [00:03:07.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js index 98dabd163d35f..83269127e57d6 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info After request @@ -501,13 +465,11 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -FsWatchesRecursive:: - Info 90 [00:02:32.000] response: { "response": [ @@ -544,24 +506,6 @@ Info 91 [00:02:33.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: - Info 92 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 93 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) Info 93 [00:02:36.000] Files (3) @@ -585,11 +529,9 @@ FsWatches:: {} /a/a.ts: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 93 [00:02:39.000] response: { "responseRequired": false @@ -605,26 +547,6 @@ Info 94 [00:02:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 95 [00:02:41.000] Search path: /dummy Info 96 [00:02:42.000] For info: /dummy/dummy.ts :: No config files found. Info 97 [00:02:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -677,12 +599,24 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/user/user.ts: + {} Info 117 [00:03:09.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js index 409affa4a048b..5bdafd6180849 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info After request @@ -501,13 +465,11 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -FsWatchesRecursive:: - Info 90 [00:02:32.000] response: { "response": [ @@ -544,24 +506,6 @@ Info 91 [00:02:33.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: - Info 92 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 93 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) Info 93 [00:02:36.000] Files (3) @@ -585,11 +529,9 @@ FsWatches:: {} /a/a.ts: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 93 [00:02:39.000] response: { "responseRequired": false @@ -605,26 +547,6 @@ Info 94 [00:02:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 95 [00:02:41.000] Search path: /dummy Info 96 [00:02:42.000] For info: /dummy/dummy.ts :: No config files found. Info 97 [00:02:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -677,12 +599,24 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/user/user.ts: + {} Info 117 [00:03:09.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js index 6f4e95f07d705..2d27bcbaadeab 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info After request @@ -501,13 +465,11 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -FsWatchesRecursive:: - Info 90 [00:02:32.000] response: { "response": [ @@ -544,24 +506,6 @@ Info 91 [00:02:33.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: - Info 92 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 93 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) Info 93 [00:02:36.000] Files (3) @@ -585,11 +529,9 @@ FsWatches:: {} /a/a.ts: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 93 [00:02:39.000] response: { "responseRequired": false @@ -605,26 +547,6 @@ Info 94 [00:02:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 95 [00:02:41.000] Search path: /dummy Info 96 [00:02:42.000] For info: /dummy/dummy.ts :: No config files found. Info 97 [00:02:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -677,12 +599,24 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/user/user.ts: + {} Info 117 [00:03:09.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js index bba0763f0d8af..5c0fa5656e826 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -471,20 +449,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 90 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /b/bin/b.d.ts.map 500 undefined WatchType: Closed Script info @@ -501,15 +465,13 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/b/bin/b.d.ts.map: +/b/bin/b.d.ts.map: *new* {} -FsWatchesRecursive:: - Info 91 [00:02:33.000] response: { "response": [ @@ -559,26 +521,6 @@ Info 92 [00:02:34.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/b/bin/b.d.ts.map: - {} - -FsWatchesRecursive:: - Info 93 [00:02:35.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 94 [00:02:36.000] Project '/dev/null/inferredProject1*' (Inferred) Info 94 [00:02:37.000] Files (3) @@ -604,11 +546,9 @@ FsWatches:: {} /b/bin/b.d.ts.map: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 94 [00:02:40.000] response: { "responseRequired": false @@ -624,28 +564,6 @@ Info 95 [00:02:41.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/b/bin/b.d.ts.map: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 96 [00:02:42.000] Search path: /dummy Info 97 [00:02:43.000] For info: /dummy/dummy.ts :: No config files found. Info 98 [00:02:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -699,12 +617,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/b/bin/b.d.ts.map: + {} +/user/user.ts: + {} Info 119 [00:03:11.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js index ddab0c4f5f020..8de5a7a1fa96a 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js @@ -52,12 +52,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:39.000] Search path: /a Info 3 [00:00:40.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:41.000] Creating configuration project /a/tsconfig.json @@ -102,17 +96,17 @@ Info 19 [00:01:01.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:02.000] response: @@ -146,20 +140,6 @@ Info 20 [00:01:03.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:05.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:06.000] Files (1) @@ -177,7 +157,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -199,22 +179,6 @@ Info 23 [00:01:10.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:11.000] Search path: /b Info 25 [00:01:12.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:13.000] Creating configuration project /b/tsconfig.json @@ -278,15 +242,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:45.000] response: @@ -320,20 +298,6 @@ Info 53 [00:01:46.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:48.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:49.000] Files (1) @@ -351,7 +315,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -373,22 +337,6 @@ Info 56 [00:01:53.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/b/b.ts: - {} - -FsWatchesRecursive:: -/b: - {} - Info 57 [00:01:54.000] Search path: /user Info 58 [00:01:55.000] For info: /user/user.ts :: Config file name: /user/tsconfig.json Info 59 [00:01:56.000] Creating configuration project /user/tsconfig.json @@ -467,7 +415,7 @@ PolledWatches:: {"pollingInterval":500} /b/node_modules/@types: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -475,19 +423,19 @@ FsWatches:: {} /b/b.ts: {} -/user/tsconfig.json: +/user/tsconfig.json: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: /b: {} -/user: +/user: *new* {} -/a: +/a: *new* {} Info 77 [00:02:23.000] response: @@ -506,64 +454,8 @@ Info 78 [00:02:24.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/b/b.ts: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/b/b.ts: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - Info 79 [00:02:25.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js index b4dfaa37df54a..7c50fd7b8739f 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js @@ -52,12 +52,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:39.000] Search path: /a Info 3 [00:00:40.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:41.000] Creating configuration project /a/tsconfig.json @@ -102,17 +96,17 @@ Info 19 [00:01:01.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:02.000] response: @@ -146,20 +140,6 @@ Info 20 [00:01:03.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:05.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:06.000] Files (1) @@ -177,7 +157,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -199,22 +179,6 @@ Info 23 [00:01:10.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:11.000] Search path: /b Info 25 [00:01:12.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:13.000] Creating configuration project /b/tsconfig.json @@ -278,15 +242,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:45.000] response: @@ -320,20 +298,6 @@ Info 53 [00:01:46.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:48.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:49.000] Files (1) @@ -351,7 +315,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -373,22 +337,6 @@ Info 56 [00:01:53.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/b/b.ts: - {} - -FsWatchesRecursive:: -/b: - {} - Info 57 [00:01:54.000] Search path: /user Info 58 [00:01:55.000] For info: /user/user.ts :: Config file name: /user/tsconfig.json Info 59 [00:01:56.000] Creating configuration project /user/tsconfig.json @@ -467,7 +415,7 @@ PolledWatches:: {"pollingInterval":500} /b/node_modules/@types: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -475,19 +423,19 @@ FsWatches:: {} /b/b.ts: {} -/user/tsconfig.json: +/user/tsconfig.json: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: /b: {} -/user: +/user: *new* {} -/a: +/a: *new* {} Info 77 [00:02:23.000] response: @@ -505,64 +453,8 @@ Info 78 [00:02:24.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/b/b.ts: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} -/b/b.ts: - {} -/user/tsconfig.json: - {} -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/b: - {} -/user: - {} -/a: - {} - Info 79 [00:02:25.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js index 9b6aecccb29f2..81a142ebc10f7 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -470,20 +448,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] Search path: /a Info 89 [00:02:31.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 90 [00:02:32.000] Creating configuration project /a/tsconfig.json @@ -538,7 +502,7 @@ PolledWatches:: {"pollingInterval":500} /user/node_modules/@types: {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -546,11 +510,11 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 105 [00:02:58.000] response: @@ -570,26 +534,6 @@ Info 106 [00:02:59.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 107 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 108 [00:03:01.000] Search path: /a Info 109 [00:03:02.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json @@ -610,7 +554,7 @@ FsWatches:: {} /a/tsconfig.json: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} FsWatchesRecursive:: @@ -691,28 +635,6 @@ Info 111 [00:03:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/tsconfig.json: - {} -/a/bin/a.d.ts.map: - {} - -FsWatchesRecursive:: -/a: - {} - Info 112 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 113 [00:03:06.000] Project '/a/tsconfig.json' (Configured) Info 113 [00:03:07.000] Files (1) @@ -744,7 +666,7 @@ FsWatches:: {} /a/bin/a.d.ts.map: {} -/user/user.ts: +/user/user.ts: *new* {} FsWatchesRecursive:: @@ -766,30 +688,6 @@ Info 114 [00:03:16.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/tsconfig.json: - {} -/a/bin/a.d.ts.map: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 115 [00:03:17.000] Search path: /dummy Info 116 [00:03:18.000] For info: /dummy/dummy.ts :: No config files found. Info 117 [00:03:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -847,7 +745,11 @@ PolledWatches:: {"pollingInterval":500} /a/node_modules/@types: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/user/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -858,6 +760,12 @@ FsWatches:: /a/bin/a.d.ts.map: {} +FsWatches *deleted*:: +/b/bin/b.d.ts: + {} +/user/user.ts: + {} + FsWatchesRecursive:: /a: {} diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js index 35ee860848731..65b177d70a6d8 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /b/bin/b.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -500,11 +464,9 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/b/bin/b.d.ts.map: +/b/bin/b.d.ts.map: *new* {} -FsWatchesRecursive:: - Info 89 [00:02:31.000] response: { "response": { @@ -579,22 +541,6 @@ Info 90 [00:02:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/b/bin/b.d.ts.map: - {} - -FsWatchesRecursive:: - Info 91 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 92 [00:02:34.000] Project '/dev/null/inferredProject1*' (Inferred) Info 92 [00:02:35.000] Files (3) @@ -616,11 +562,9 @@ FsWatches:: {} /b/bin/b.d.ts.map: {} -/user/user.ts: +/user/user.ts: *new* {} -FsWatchesRecursive:: - Info 92 [00:02:38.000] response: { "responseRequired": false @@ -636,24 +580,6 @@ Info 93 [00:02:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/b/bin/b.d.ts.map: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: - Info 94 [00:02:40.000] Search path: /dummy Info 95 [00:02:41.000] For info: /dummy/dummy.ts :: No config files found. Info 96 [00:02:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -705,12 +631,22 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/b/bin/b.d.ts.map: + {} +/user/user.ts: + {} Info 115 [00:03:07.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js index 77b4457f10cc7..279f1c0d2dd10 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 90 [00:02:32.000] Search path: /a @@ -527,7 +491,7 @@ PolledWatches:: {"pollingInterval":500} /user/node_modules/@types: {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,15 +499,15 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 105 [00:02:47.000] response: @@ -620,30 +584,6 @@ Info 106 [00:02:48.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 107 [00:02:49.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 108 [00:02:50.000] Project '/a/tsconfig.json' (Configured) Info 108 [00:02:51.000] Files (1) @@ -675,7 +615,7 @@ FsWatches:: {} /a/tsconfig.json: {} -/user/user.ts: +/user/user.ts: *new* {} FsWatchesRecursive:: @@ -697,32 +637,6 @@ Info 109 [00:02:58.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 110 [00:02:59.000] Search path: /dummy Info 111 [00:03:00.000] For info: /dummy/dummy.ts :: No config files found. Info 112 [00:03:01.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -791,12 +705,32 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} +/a/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/a/tsconfig.json: + {} +/user/user.ts: + {} + +FsWatchesRecursive *deleted*:: +/a: + {} Info 142 [00:03:37.000] response: { diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js index c46b4929925cf..81ad116004618 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js @@ -49,12 +49,6 @@ export function fnUser() { a.fnA(); b.fnB(); a.instanceA; } let a = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /a Info 3 [00:00:38.000] For info: /a/a.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /a/tsconfig.json @@ -99,17 +93,17 @@ Info 19 [00:00:59.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:01:00.000] response: @@ -143,20 +137,6 @@ Info 20 [00:01:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 22 [00:01:03.000] Project '/a/tsconfig.json' (Configured) Info 22 [00:01:04.000] Files (1) @@ -174,7 +154,7 @@ PolledWatches:: FsWatches:: /a/tsconfig.json: {} -/a/a.ts: +/a/a.ts: *new* {} FsWatchesRecursive:: @@ -196,22 +176,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/a.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 24 [00:01:09.000] Search path: /b Info 25 [00:01:10.000] For info: /b/b.ts :: Config file name: /b/tsconfig.json Info 26 [00:01:11.000] Creating configuration project /b/tsconfig.json @@ -275,15 +239,29 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/node_modules/@types: {"pollingInterval":500} FsWatches:: -/b/tsconfig.json: +/b/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/a/tsconfig.json: + {} +/a/a.ts: {} FsWatchesRecursive:: -/b: +/b: *new* + {} + +FsWatchesRecursive *deleted*:: +/a: {} Info 52 [00:01:43.000] response: @@ -317,20 +295,6 @@ Info 53 [00:01:44.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 54 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /b/b.ts 500 undefined WatchType: Closed Script info Info 55 [00:01:46.000] Project '/b/tsconfig.json' (Configured) Info 55 [00:01:47.000] Files (1) @@ -348,7 +312,7 @@ PolledWatches:: FsWatches:: /b/tsconfig.json: {} -/b/b.ts: +/b/b.ts: *new* {} FsWatchesRecursive:: @@ -388,6 +352,10 @@ FsWatches:: /b/tsconfig.json: {} +FsWatches *deleted*:: +/b/b.ts: + {} + FsWatchesRecursive:: /b: {} @@ -444,16 +412,26 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/user/node_modules/@types: +/user/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/b/node_modules/@types: {"pollingInterval":500} FsWatches:: -/a/bin/a.d.ts: +/a/bin/a.d.ts: *new* {} -/b/bin/b.d.ts: +/b/bin/b.d.ts: *new* {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/b/tsconfig.json: + {} + +FsWatchesRecursive *deleted*:: +/b: + {} Info 86 [00:02:28.000] response: { @@ -472,20 +450,6 @@ Info 87 [00:02:29.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} - -FsWatchesRecursive:: - Info 88 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /a/bin/a.d.ts.map 500 undefined WatchType: Closed Script info Info 89 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /a/a.ts 500 undefined WatchType: Closed Script info Info 90 [00:02:32.000] Search path: /a @@ -527,7 +491,7 @@ PolledWatches:: {"pollingInterval":500} /user/node_modules/@types: {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,15 +499,15 @@ FsWatches:: {} /b/bin/b.d.ts: {} -/a/bin/a.d.ts.map: +/a/bin/a.d.ts.map: *new* {} -/a/a.ts: +/a/a.ts: *new* {} -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 105 [00:02:47.000] response: @@ -581,30 +545,6 @@ Info 106 [00:02:48.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 107 [00:02:49.000] FileWatcher:: Added:: WatchInfo: /user/user.ts 500 undefined WatchType: Closed Script info Info 108 [00:02:50.000] Project '/a/tsconfig.json' (Configured) Info 108 [00:02:51.000] Files (1) @@ -636,7 +576,7 @@ FsWatches:: {} /a/tsconfig.json: {} -/user/user.ts: +/user/user.ts: *new* {} FsWatchesRecursive:: @@ -658,32 +598,6 @@ Info 109 [00:02:58.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/node_modules/@types: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/bin/a.d.ts: - {} -/b/bin/b.d.ts: - {} -/a/bin/a.d.ts.map: - {} -/a/a.ts: - {} -/a/tsconfig.json: - {} -/user/user.ts: - {} - -FsWatchesRecursive:: -/a: - {} - Info 110 [00:02:59.000] Search path: /dummy Info 111 [00:03:00.000] For info: /dummy/dummy.ts :: No config files found. Info 112 [00:03:01.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* @@ -752,12 +666,32 @@ After request PolledWatches:: /a/lib/lib.d.ts: {"pollingInterval":500} -/dummy/node_modules/@types: +/dummy/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: +PolledWatches *deleted*:: +/user/node_modules/@types: + {"pollingInterval":500} +/a/node_modules/@types: + {"pollingInterval":500} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/bin/a.d.ts: + {} +/b/bin/b.d.ts: + {} +/a/bin/a.d.ts.map: + {} +/a/a.ts: + {} +/a/tsconfig.json: + {} +/user/user.ts: + {} + +FsWatchesRecursive *deleted*:: +/a: + {} Info 142 [00:03:37.000] response: { diff --git a/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js b/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js index 3455c68e741f3..a6ab128ace3ce 100644 --- a/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js +++ b/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js @@ -33,12 +33,6 @@ foo {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /a Info 3 [00:00:32.000] For info: /a/user.ts :: Config file name: /tsconfig.json Info 4 [00:00:33.000] Creating configuration project /tsconfig.json @@ -97,29 +91,29 @@ Info 26 [00:01:00.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/b/user.ts: +/b/user.ts: *new* {} -/a/node_modules/foo/package.json: +/a/node_modules/foo/package.json: *new* {} -/b/node_modules/foo/package.json: +/b/node_modules/foo/package.json: *new* {} FsWatchesRecursive:: -/: +/: *new* {} -/a/node_modules: +/a/node_modules: *new* {} -/b/node_modules: +/b/node_modules: *new* {} -/a: +/a: *new* {} -/b: +/b: *new* {} Info 26 [00:01:01.000] response: @@ -137,32 +131,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/b/user.ts: - {} -/a/node_modules/foo/package.json: - {} -/b/node_modules/foo/package.json: - {} - -FsWatchesRecursive:: -/: - {} -/a/node_modules: - {} -/b/node_modules: - {} -/a: - {} -/b: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /b/user.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /b Info 30 [00:01:05.000] For info: /b/user.ts :: Config file name: /tsconfig.json @@ -189,6 +157,10 @@ FsWatches:: /b/node_modules/foo/package.json: {} +FsWatches *deleted*:: +/b/user.ts: + {} + FsWatchesRecursive:: /: {} @@ -223,56 +195,8 @@ Info 32 [00:01:15.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/a/node_modules/foo/package.json: - {} -/b/node_modules/foo/package.json: - {} - -FsWatchesRecursive:: -/: - {} -/a/node_modules: - {} -/b/node_modules: - {} -/a: - {} -/b: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/a/node_modules/foo/package.json: - {} -/b/node_modules/foo/package.json: - {} - -FsWatchesRecursive:: -/: - {} -/a/node_modules: - {} -/b/node_modules: - {} -/a: - {} -/b: - {} - Info 33 [00:01:16.000] response: { "response": [ @@ -319,56 +243,8 @@ Info 34 [00:01:17.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/a/node_modules/foo/package.json: - {} -/b/node_modules/foo/package.json: - {} - -FsWatchesRecursive:: -/: - {} -/a/node_modules: - {} -/b/node_modules: - {} -/a: - {} -/b: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/a/node_modules/foo/package.json: - {} -/b/node_modules/foo/package.json: - {} - -FsWatchesRecursive:: -/: - {} -/a/node_modules: - {} -/b/node_modules: - {} -/a: - {} -/b: - {} - Info 35 [00:01:18.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js b/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js index deb6f3d9322ac..ab621ce1641fd 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js @@ -16,12 +16,6 @@ Before request {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: /proj Info 3 [00:00:12.000] For info: /proj/a.ts :: Config file name: /proj/tsconfig.json Info 4 [00:00:13.000] Creating configuration project /proj/tsconfig.json @@ -60,17 +54,17 @@ Info 17 [00:00:31.000] Projects: /proj/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/proj/node_modules/@types: +/proj/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/proj/tsconfig.json: +/proj/tsconfig.json: *new* {} FsWatchesRecursive:: -/proj: +/proj: *new* {} Info 17 [00:00:32.000] response: @@ -91,20 +85,6 @@ Info 18 [00:00:33.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/proj/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/proj/tsconfig.json: - {} - -FsWatchesRecursive:: -/proj: - {} - Info 19 [00:00:34.000] Search path: Info 20 [00:00:35.000] For info: untitled:^Untitled-1 :: No config files found. Info 21 [00:00:36.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -142,7 +122,7 @@ PolledWatches:: {"pollingInterval":500} /proj/node_modules/@types: {"pollingInterval":500} -/typings/@epic/core.d.ts: +/typings/@epic/core.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -175,40 +155,8 @@ Info 31 [00:00:57.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/proj/node_modules/@types: - {"pollingInterval":500} -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/proj/tsconfig.json: - {} - -FsWatchesRecursive:: -/proj: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/proj/node_modules/@types: - {"pollingInterval":500} -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/proj/tsconfig.json: - {} - -FsWatchesRecursive:: -/proj: - {} - Info 32 [00:00:58.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js b/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js index bfb3f78c37fde..82cc7409ec1ce 100644 --- a/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js +++ b/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js @@ -72,12 +72,6 @@ const bar: Bar = { -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /packages/babel-loader/src Info 3 [00:00:26.000] For info: /packages/babel-loader/src/index.ts :: Config file name: /packages/babel-loader/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /packages/babel-loader/tsconfig.json @@ -158,25 +152,25 @@ Info 25 [00:00:53.000] Projects: /packages/babel-loader/tsconfig.json After request PolledWatches:: -/a/lib/lib.es2018.full.d.ts: +/a/lib/lib.es2018.full.d.ts: *new* {"pollingInterval":500} -/packages/babel-loader/node_modules/@types: +/packages/babel-loader/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/packages/babel-loader/tsconfig.json: +/packages/babel-loader/tsconfig.json: *new* {} -/packages/core/tsconfig.json: +/packages/core/tsconfig.json: *new* {} -/packages/core/src/index.ts: +/packages/core/src/index.ts: *new* {} -/packages/core/src/loading-indicator.ts: +/packages/core/src/loading-indicator.ts: *new* {} FsWatchesRecursive:: -/packages/babel-loader/src: +/packages/babel-loader/src: *new* {} -/packages/core/src: +/packages/core/src: *new* {} Info 25 [00:00:54.000] response: @@ -200,28 +194,6 @@ Info 26 [00:00:55.000] request: } Before request -PolledWatches:: -/a/lib/lib.es2018.full.d.ts: - {"pollingInterval":500} -/packages/babel-loader/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/packages/babel-loader/tsconfig.json: - {} -/packages/core/tsconfig.json: - {} -/packages/core/src/index.ts: - {} -/packages/core/src/loading-indicator.ts: - {} - -FsWatchesRecursive:: -/packages/babel-loader/src: - {} -/packages/core/src: - {} - Info 27 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /packages/core/src/index.ts 500 undefined WatchType: Closed Script info Info 28 [00:00:57.000] Search path: /packages/core/src Info 29 [00:00:58.000] For info: /packages/core/src/index.ts :: Config file name: /packages/core/tsconfig.json @@ -266,7 +238,7 @@ PolledWatches:: {"pollingInterval":500} /packages/babel-loader/node_modules/@types: {"pollingInterval":500} -/packages/core/node_modules/@types: +/packages/core/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -277,6 +249,10 @@ FsWatches:: /packages/core/src/loading-indicator.ts: {} +FsWatches *deleted*:: +/packages/core/src/index.ts: + {} + FsWatchesRecursive:: /packages/babel-loader/src: {} @@ -316,52 +292,8 @@ Info 42 [00:01:22.000] request: } Before request -PolledWatches:: -/a/lib/lib.es2018.full.d.ts: - {"pollingInterval":500} -/packages/babel-loader/node_modules/@types: - {"pollingInterval":500} -/packages/core/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/packages/babel-loader/tsconfig.json: - {} -/packages/core/tsconfig.json: - {} -/packages/core/src/loading-indicator.ts: - {} - -FsWatchesRecursive:: -/packages/babel-loader/src: - {} -/packages/core/src: - {} - After request -PolledWatches:: -/a/lib/lib.es2018.full.d.ts: - {"pollingInterval":500} -/packages/babel-loader/node_modules/@types: - {"pollingInterval":500} -/packages/core/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/packages/babel-loader/tsconfig.json: - {} -/packages/core/tsconfig.json: - {} -/packages/core/src/loading-indicator.ts: - {} - -FsWatchesRecursive:: -/packages/babel-loader/src: - {} -/packages/core/src: - {} - Info 43 [00:01:23.000] response: { "response": true, @@ -380,28 +312,6 @@ Info 44 [00:01:24.000] request: } Before request -PolledWatches:: -/a/lib/lib.es2018.full.d.ts: - {"pollingInterval":500} -/packages/babel-loader/node_modules/@types: - {"pollingInterval":500} -/packages/core/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/packages/babel-loader/tsconfig.json: - {} -/packages/core/tsconfig.json: - {} -/packages/core/src/loading-indicator.ts: - {} - -FsWatchesRecursive:: -/packages/babel-loader/src: - {} -/packages/core/src: - {} - Info 45 [00:01:25.000] Finding references to /packages/core/src/index.ts position 92 in project /packages/core/tsconfig.json Info 46 [00:01:26.000] Starting updateGraphWorker: Project: /packages/babel-loader/tsconfig.json Info 47 [00:01:27.000] Finishing updateGraphWorker: Project: /packages/babel-loader/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms @@ -424,7 +334,7 @@ PolledWatches:: {"pollingInterval":500} /packages/core/node_modules/@types: {"pollingInterval":500} -/packages/core/dist/loading-indicator.d.ts: +/packages/core/dist/loading-indicator.d.ts: *new* {"pollingInterval":2000} FsWatches:: diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js index a8ff49a894f9a..96d278d9343c0 100644 --- a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js +++ b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js @@ -33,12 +33,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:26.000] Search path: /user/username/projects/myproject Info 3 [00:00:27.000] For info: /user/username/projects/myproject/another.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -95,19 +89,19 @@ Info 22 [00:00:51.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/logger.ts: +/user/username/projects/myproject/logger.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 22 [00:00:52.000] response: @@ -128,160 +122,32 @@ Info 23 [00:00:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 24 [00:00:54.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 25 [00:00:55.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 26 [00:00:56.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 27 [00:00:57.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} Info 28 [00:00:58.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 29 [00:00:59.000] request: { "command": "updateOpen", @@ -310,40 +176,8 @@ Info 29 [00:00:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 30 [00:01:00.000] response: { "response": true, @@ -363,62 +197,14 @@ Info 31 [00:01:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 32 [00:01:02.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 33 [00:01:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 34 [00:01:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info 35 [00:01:05.000] Different program with same set of files @@ -426,96 +212,16 @@ Info 36 [00:01:06.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 37 [00:01:07.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[{"start":{"line":1,"offset":24},"end":{"line":1,"offset":34},"text":"File name '/user/username/projects/myproject/logger.ts' differs from already included file name '/user/username/projects/myproject/Logger.ts' only in casing.\n The file is in the program because:\n Matched by default include pattern '**/*'\n Imported via \"./logger\" from file '/user/username/projects/myproject/another.ts'","code":1149,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 38 [00:01:08.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} Info 39 [00:01:09.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/logger.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js index 11879513b2ec6..33cee2a174c5b 100644 --- a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js +++ b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js @@ -33,12 +33,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:26.000] Search path: /user/username/projects/myproject Info 3 [00:00:27.000] For info: /user/username/projects/myproject/Logger.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -95,19 +89,19 @@ Info 22 [00:00:51.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/another.ts: +/user/username/projects/myproject/another.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 22 [00:00:52.000] response: @@ -128,160 +122,32 @@ Info 23 [00:00:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 24 [00:00:54.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 25 [00:00:55.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/Logger.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 26 [00:00:56.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/Logger.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 27 [00:00:57.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/Logger.ts","diagnostics":[]}} Info 28 [00:00:58.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 29 [00:01:00.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 30 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 31 [00:01:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -298,22 +164,6 @@ Info 33 [00:01:06.000] request: Before request //// [/user/username/projects/myproject/logger.ts] file was renamed from file /user/username/projects/myproject/Logger.ts -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 34 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info Info 35 [00:01:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info 35 [00:01:09.000] Files (3) @@ -333,7 +183,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/logger.ts: +/user/username/projects/myproject/logger.ts: *new* {} FsWatchesRecursive:: @@ -356,24 +206,6 @@ Info 36 [00:01:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/logger.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 37 [00:01:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info Info 38 [00:01:15.000] Search path: /user/username/projects/myproject Info 39 [00:01:16.000] For info: /user/username/projects/myproject/Logger.ts :: Config file name: /user/username/projects/myproject/tsconfig.json @@ -401,6 +233,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/logger.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject: {} @@ -421,22 +257,6 @@ Info 44 [00:01:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/another.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 45 [00:01:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info Info 46 [00:01:29.000] Search path: /user/username/projects/myproject Info 47 [00:01:30.000] For info: /user/username/projects/myproject/another.ts :: Config file name: /user/username/projects/myproject/tsconfig.json @@ -461,6 +281,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/another.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject: {} @@ -497,36 +321,8 @@ Info 49 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 50 [00:01:41.000] response: { "response": true, @@ -547,56 +343,14 @@ Info 51 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 52 [00:01:43.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 53 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 54 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info 55 [00:01:46.000] Different program with same set of files @@ -604,188 +358,34 @@ Info 56 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/logger.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/logger.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/logger.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 60 [00:01:51.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 61 [00:01:52.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} Info 62 [00:01:53.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":7}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} diff --git a/tests/baselines/reference/tsserver/getApplicableRefactors/works-when-taking-position.js b/tests/baselines/reference/tsserver/getApplicableRefactors/works-when-taking-position.js index bcbf74eedf476..6d8b4d3bce2f2 100644 --- a/tests/baselines/reference/tsserver/getApplicableRefactors/works-when-taking-position.js +++ b/tests/baselines/reference/tsserver/getApplicableRefactors/works-when-taking-position.js @@ -13,12 +13,6 @@ Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:07.000] Search path: / Info 3 [00:00:08.000] For info: /a.ts :: No config files found. Info 4 [00:00:09.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -43,13 +37,9 @@ Info 10 [00:00:20.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -FsWatches:: - -FsWatchesRecursive:: - Info 10 [00:00:21.000] response: { "responseRequired": false @@ -67,24 +57,8 @@ Info 11 [00:00:22.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:23.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js index 449f73f73219a..dd5572fb3a8e3 100644 --- a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js +++ b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js @@ -19,12 +19,6 @@ export {}; {"files":["./a.ts","./b.ts"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: / Info 3 [00:00:12.000] For info: /a.ts :: Config file name: /tsconfig.json Info 4 [00:00:13.000] Creating configuration project /tsconfig.json @@ -65,21 +59,19 @@ Info 18 [00:00:32.000] Projects: /tsconfig.json After request PolledWatches:: -/b: +/b: *new* {"pollingInterval":500} -/b.ts: +/b.ts: *new* {"pollingInterval":500} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/: +/: *new* {} -FsWatchesRecursive:: - Info 18 [00:00:33.000] response: { "responseRequired": false @@ -95,22 +87,6 @@ Info 19 [00:00:34.000] request: } Before request -PolledWatches:: -/b: - {"pollingInterval":500} -/b.ts: - {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/: - {} - -FsWatchesRecursive:: - Info 20 [00:00:35.000] Search path: / Info 21 [00:00:36.000] For info: /c.ts :: Config file name: /tsconfig.json Info 22 [00:00:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -140,22 +116,6 @@ Info 28 [00:00:52.000] FileName: /c.ts ProjectRootPath: undefined Info 28 [00:00:53.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: -/b: - {"pollingInterval":500} -/b.ts: - {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/: - {} - -FsWatchesRecursive:: - Info 28 [00:00:54.000] response: { "responseRequired": false @@ -172,40 +132,8 @@ Info 29 [00:00:55.000] request: } Before request -PolledWatches:: -/b: - {"pollingInterval":500} -/b.ts: - {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/b: - {"pollingInterval":500} -/b.ts: - {"pollingInterval":500} -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/: - {} - -FsWatchesRecursive:: - Info 30 [00:00:56.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js index e35934649d0a5..8ee7815128d4a 100644 --- a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js +++ b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js @@ -25,12 +25,6 @@ import { x } from "../a/old"; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] Search path: /a Info 3 [00:00:20.000] For info: /a/user.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:21.000] Creating configuration project /a/tsconfig.json @@ -73,19 +67,17 @@ Info 16 [00:00:38.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/a/old.ts: +/a/old.ts: *new* {} -FsWatchesRecursive:: - Info 16 [00:00:39.000] response: { "responseRequired": false @@ -101,20 +93,6 @@ Info 17 [00:00:40.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/old.ts: - {} - -FsWatchesRecursive:: - Info 18 [00:00:41.000] Search path: /b Info 19 [00:00:42.000] For info: /b/user.ts :: Config file name: /b/tsconfig.json Info 20 [00:00:43.000] Creating configuration project /b/tsconfig.json @@ -166,7 +144,7 @@ PolledWatches:: {"pollingInterval":500} /a/node_modules/@types: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -174,11 +152,11 @@ FsWatches:: {} /a/old.ts: {} -/b/tsconfig.json: +/b/tsconfig.json: *new* {} FsWatchesRecursive:: -/b: +/b: *new* {} Info 33 [00:01:07.000] response: @@ -197,48 +175,8 @@ Info 34 [00:01:08.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/old.ts: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/a/old.ts: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/b: - {} - Info 35 [00:01:09.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js index 8d8f46de440eb..310b3c48ff1ef 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/array-destructuring-declaration.js @@ -23,12 +23,6 @@ export const { nest: [valueE, { valueF }] } = { nest: [0, { valueF: 1 }] }; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: / Info 3 [00:00:12.000] For info: /main.ts :: Config file name: /tsconfig.json Info 4 [00:00:13.000] Creating configuration project /tsconfig.json @@ -71,17 +65,17 @@ Info 16 [00:00:30.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/mod.ts: +/mod.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 16 [00:00:31.000] response: @@ -99,20 +93,6 @@ Info 17 [00:00:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/mod.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 18 [00:00:33.000] FileWatcher:: Close:: WatchInfo: /mod.ts 500 undefined WatchType: Closed Script info Info 19 [00:00:34.000] Search path: / Info 20 [00:00:35.000] For info: /mod.ts :: Config file name: /tsconfig.json @@ -135,6 +115,10 @@ FsWatches:: /tsconfig.json: {} +FsWatches *deleted*:: +/mod.ts: + {} + FsWatchesRecursive:: /: {} @@ -156,33 +140,9 @@ Info 22 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 23 [00:00:46.000] Finding references to /mod.ts position 38 in project /tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 24 [00:00:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js index 597ccee2064f0..a1eec302c4d22 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/const-variable-declaration.js @@ -23,12 +23,6 @@ export const { nest: [valueE, { valueF }] } = { nest: [0, { valueF: 1 }] }; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: / Info 3 [00:00:12.000] For info: /main.ts :: Config file name: /tsconfig.json Info 4 [00:00:13.000] Creating configuration project /tsconfig.json @@ -71,17 +65,17 @@ Info 16 [00:00:30.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/mod.ts: +/mod.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 16 [00:00:31.000] response: @@ -99,20 +93,6 @@ Info 17 [00:00:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/mod.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 18 [00:00:33.000] FileWatcher:: Close:: WatchInfo: /mod.ts 500 undefined WatchType: Closed Script info Info 19 [00:00:34.000] Search path: / Info 20 [00:00:35.000] For info: /mod.ts :: Config file name: /tsconfig.json @@ -135,6 +115,10 @@ FsWatches:: /tsconfig.json: {} +FsWatches *deleted*:: +/mod.ts: + {} + FsWatchesRecursive:: /: {} @@ -156,33 +140,9 @@ Info 22 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 23 [00:00:46.000] Finding references to /mod.ts position 13 in project /tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 24 [00:00:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js index 7114eb2b3feb6..f36260a69a311 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/nested-object-declaration.js @@ -23,12 +23,6 @@ export const { nest: [valueE, { valueF }] } = { nest: [0, { valueF: 1 }] }; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: / Info 3 [00:00:12.000] For info: /main.ts :: Config file name: /tsconfig.json Info 4 [00:00:13.000] Creating configuration project /tsconfig.json @@ -71,17 +65,17 @@ Info 16 [00:00:30.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/mod.ts: +/mod.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 16 [00:00:31.000] response: @@ -99,20 +93,6 @@ Info 17 [00:00:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/mod.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 18 [00:00:33.000] FileWatcher:: Close:: WatchInfo: /mod.ts 500 undefined WatchType: Closed Script info Info 19 [00:00:34.000] Search path: / Info 20 [00:00:35.000] For info: /mod.ts :: Config file name: /tsconfig.json @@ -135,6 +115,10 @@ FsWatches:: /tsconfig.json: {} +FsWatches *deleted*:: +/mod.ts: + {} + FsWatchesRecursive:: /: {} @@ -156,33 +140,9 @@ Info 22 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 23 [00:00:46.000] Finding references to /mod.ts position 166 in project /tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 24 [00:00:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js b/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js index ca99470171a4f..85f14b0caa6ff 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js +++ b/tests/baselines/reference/tsserver/getExportReferences/object-declaration-references-that-renames-destructured-property.js @@ -23,12 +23,6 @@ export const { nest: [valueE, { valueF }] } = { nest: [0, { valueF: 1 }] }; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: / Info 3 [00:00:12.000] For info: /main.ts :: Config file name: /tsconfig.json Info 4 [00:00:13.000] Creating configuration project /tsconfig.json @@ -71,17 +65,17 @@ Info 16 [00:00:30.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/mod.ts: +/mod.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 16 [00:00:31.000] response: @@ -99,20 +93,6 @@ Info 17 [00:00:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/mod.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 18 [00:00:33.000] FileWatcher:: Close:: WatchInfo: /mod.ts 500 undefined WatchType: Closed Script info Info 19 [00:00:34.000] Search path: / Info 20 [00:00:35.000] For info: /mod.ts :: Config file name: /tsconfig.json @@ -135,6 +115,10 @@ FsWatches:: /tsconfig.json: {} +FsWatches *deleted*:: +/mod.ts: + {} + FsWatchesRecursive:: /: {} @@ -156,33 +140,9 @@ Info 22 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 23 [00:00:46.000] Finding references to /mod.ts position 95 in project /tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 24 [00:00:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js b/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js index 088fe4eb9a10b..676b3b6ff1867 100644 --- a/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js +++ b/tests/baselines/reference/tsserver/getExportReferences/object-destructuring-declaration.js @@ -23,12 +23,6 @@ export const { nest: [valueE, { valueF }] } = { nest: [0, { valueF: 1 }] }; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: / Info 3 [00:00:12.000] For info: /main.ts :: Config file name: /tsconfig.json Info 4 [00:00:13.000] Creating configuration project /tsconfig.json @@ -71,17 +65,17 @@ Info 16 [00:00:30.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/mod.ts: +/mod.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 16 [00:00:31.000] response: @@ -99,20 +93,6 @@ Info 17 [00:00:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/mod.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 18 [00:00:33.000] FileWatcher:: Close:: WatchInfo: /mod.ts 500 undefined WatchType: Closed Script info Info 19 [00:00:34.000] Search path: / Info 20 [00:00:35.000] For info: /mod.ts :: Config file name: /tsconfig.json @@ -135,6 +115,10 @@ FsWatches:: /tsconfig.json: {} +FsWatches *deleted*:: +/mod.ts: + {} + FsWatchesRecursive:: /: {} @@ -156,33 +140,9 @@ Info 22 [00:00:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 23 [00:00:46.000] Finding references to /mod.ts position 79 in project /tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 24 [00:00:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js b/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js index eb9fbad9b2740..34b407baf6fb9 100644 --- a/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js +++ b/tests/baselines/reference/tsserver/getFileReferences/should-get-file-references.js @@ -26,12 +26,6 @@ type T = typeof import("./a").a; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /project Info 3 [00:00:18.000] For info: /project/a.ts :: Config file name: /project/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /project/tsconfig.json @@ -89,23 +83,23 @@ Info 20 [00:00:40.000] Projects: /project/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/project/node_modules/@types: +/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: +/project/tsconfig.json: *new* {} -/project/b.ts: +/project/b.ts: *new* {} -/project/c.ts: +/project/c.ts: *new* {} -/project/d.ts: +/project/d.ts: *new* {} FsWatchesRecursive:: -/project: +/project: *new* {} Info 20 [00:00:41.000] response: @@ -123,26 +117,6 @@ Info 21 [00:00:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} -/project/b.ts: - {} -/project/c.ts: - {} -/project/d.ts: - {} - -FsWatchesRecursive:: -/project: - {} - Info 22 [00:00:43.000] FileWatcher:: Close:: WatchInfo: /project/b.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:44.000] Search path: /project Info 24 [00:00:45.000] For info: /project/b.ts :: Config file name: /project/tsconfig.json @@ -171,6 +145,10 @@ FsWatches:: /project/d.ts: {} +FsWatches *deleted*:: +/project/b.ts: + {} + FsWatchesRecursive:: /project: {} @@ -190,24 +168,6 @@ Info 26 [00:00:55.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} -/project/c.ts: - {} -/project/d.ts: - {} - -FsWatchesRecursive:: -/project: - {} - Info 27 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /project/c.ts 500 undefined WatchType: Closed Script info Info 28 [00:00:57.000] Search path: /project Info 29 [00:00:58.000] For info: /project/c.ts :: Config file name: /project/tsconfig.json @@ -236,6 +196,10 @@ FsWatches:: /project/d.ts: {} +FsWatches *deleted*:: +/project/c.ts: + {} + FsWatchesRecursive:: /project: {} @@ -255,22 +219,6 @@ Info 31 [00:01:10.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} -/project/d.ts: - {} - -FsWatchesRecursive:: -/project: - {} - Info 32 [00:01:11.000] FileWatcher:: Close:: WatchInfo: /project/d.ts 500 undefined WatchType: Closed Script info Info 33 [00:01:12.000] Search path: /project Info 34 [00:01:13.000] For info: /project/d.ts :: Config file name: /project/tsconfig.json @@ -299,6 +247,10 @@ FsWatches:: /project/tsconfig.json: {} +FsWatches *deleted*:: +/project/d.ts: + {} + FsWatchesRecursive:: /project: {} @@ -318,36 +270,8 @@ Info 36 [00:01:27.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} - -FsWatchesRecursive:: -/project: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} - -FsWatchesRecursive:: -/project: - {} - Info 37 [00:01:28.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js b/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js index 2385186feb6df..a140f74e1ee56 100644 --- a/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js +++ b/tests/baselines/reference/tsserver/getFileReferences/should-skip-lineText-from-file-references.js @@ -26,12 +26,6 @@ type T = typeof import("./a").a; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /project Info 3 [00:00:18.000] For info: /project/a.ts :: Config file name: /project/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /project/tsconfig.json @@ -89,23 +83,23 @@ Info 20 [00:00:40.000] Projects: /project/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/project/node_modules/@types: +/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/project/tsconfig.json: +/project/tsconfig.json: *new* {} -/project/b.ts: +/project/b.ts: *new* {} -/project/c.ts: +/project/c.ts: *new* {} -/project/d.ts: +/project/d.ts: *new* {} FsWatchesRecursive:: -/project: +/project: *new* {} Info 20 [00:00:41.000] response: @@ -123,26 +117,6 @@ Info 21 [00:00:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} -/project/b.ts: - {} -/project/c.ts: - {} -/project/d.ts: - {} - -FsWatchesRecursive:: -/project: - {} - Info 22 [00:00:43.000] FileWatcher:: Close:: WatchInfo: /project/b.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:44.000] Search path: /project Info 24 [00:00:45.000] For info: /project/b.ts :: Config file name: /project/tsconfig.json @@ -171,6 +145,10 @@ FsWatches:: /project/d.ts: {} +FsWatches *deleted*:: +/project/b.ts: + {} + FsWatchesRecursive:: /project: {} @@ -190,24 +168,6 @@ Info 26 [00:00:55.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} -/project/c.ts: - {} -/project/d.ts: - {} - -FsWatchesRecursive:: -/project: - {} - Info 27 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /project/c.ts 500 undefined WatchType: Closed Script info Info 28 [00:00:57.000] Search path: /project Info 29 [00:00:58.000] For info: /project/c.ts :: Config file name: /project/tsconfig.json @@ -236,6 +196,10 @@ FsWatches:: /project/d.ts: {} +FsWatches *deleted*:: +/project/c.ts: + {} + FsWatchesRecursive:: /project: {} @@ -255,22 +219,6 @@ Info 31 [00:01:10.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} -/project/d.ts: - {} - -FsWatchesRecursive:: -/project: - {} - Info 32 [00:01:11.000] FileWatcher:: Close:: WatchInfo: /project/d.ts 500 undefined WatchType: Closed Script info Info 33 [00:01:12.000] Search path: /project Info 34 [00:01:13.000] For info: /project/d.ts :: Config file name: /project/tsconfig.json @@ -299,6 +247,10 @@ FsWatches:: /project/tsconfig.json: {} +FsWatches *deleted*:: +/project/d.ts: + {} + FsWatchesRecursive:: /project: {} @@ -320,38 +272,10 @@ Info 36 [00:01:27.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} - -FsWatchesRecursive:: -/project: - {} - Info 37 [00:01:28.000] response: {"seq":0,"type":"response","command":"configure","request_seq":5,"success":true,"performanceData":{"updateGraphDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} - -FsWatchesRecursive:: -/project: - {} - Info 38 [00:01:29.000] response: { "responseRequired": false @@ -367,36 +291,8 @@ Info 39 [00:01:30.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} - -FsWatchesRecursive:: -/project: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/project/tsconfig.json: - {} - -FsWatchesRecursive:: -/project: - {} - Info 40 [00:01:31.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/inconsistentErrorInEditor/should-not-error.js b/tests/baselines/reference/tsserver/inconsistentErrorInEditor/should-not-error.js index c75b3c34d40bf..49ba4162044a5 100644 --- a/tests/baselines/reference/tsserver/inconsistentErrorInEditor/should-not-error.js +++ b/tests/baselines/reference/tsserver/inconsistentErrorInEditor/should-not-error.js @@ -18,12 +18,6 @@ Info 1 [00:00:03.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:04.000] Search path: ^/untitled/ts-nul-authority Info 3 [00:00:05.000] For info: ^/untitled/ts-nul-authority/Untitled-1 :: No config files found. Info 4 [00:00:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -48,13 +42,9 @@ Info 10 [00:00:17.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -FsWatches:: - -FsWatchesRecursive:: - Info 10 [00:00:18.000] response: { "response": true, @@ -74,24 +64,8 @@ Info 11 [00:00:19.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:20.000] response: { "response": { @@ -148,92 +122,28 @@ Info 13 [00:00:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 14 [00:00:22.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 15 [00:00:23.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"^/untitled/ts-nul-authority/Untitled-1","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 16 [00:00:24.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"^/untitled/ts-nul-authority/Untitled-1","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 17 [00:00:25.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"^/untitled/ts-nul-authority/Untitled-1","diagnostics":[{"start":{"line":9,"offset":5},"end":{"line":9,"offset":6},"text":"'x' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}} Info 18 [00:00:26.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/inconsistentErrorInEditor2/should-not-error.js b/tests/baselines/reference/tsserver/inconsistentErrorInEditor2/should-not-error.js index 97fa72c7a5991..4b06c580d8452 100644 --- a/tests/baselines/reference/tsserver/inconsistentErrorInEditor2/should-not-error.js +++ b/tests/baselines/reference/tsserver/inconsistentErrorInEditor2/should-not-error.js @@ -18,12 +18,6 @@ Info 1 [00:00:03.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:04.000] Search path: ^/untitled/ts-nul-authority Info 3 [00:00:05.000] For info: ^/untitled/ts-nul-authority/Untitled-1 :: No config files found. Info 4 [00:00:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -48,13 +42,9 @@ Info 10 [00:00:17.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -FsWatches:: - -FsWatchesRecursive:: - Info 10 [00:00:18.000] response: { "response": true, @@ -74,24 +64,8 @@ Info 11 [00:00:19.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:20.000] response: { "response": { @@ -133,92 +107,28 @@ Info 13 [00:00:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 14 [00:00:22.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 15 [00:00:23.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"^/untitled/ts-nul-authority/Untitled-1","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 16 [00:00:24.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"^/untitled/ts-nul-authority/Untitled-1","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 17 [00:00:25.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"^/untitled/ts-nul-authority/Untitled-1","diagnostics":[]}} Info 18 [00:00:26.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js b/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js index 9a3203654dc8a..b59708b997a99 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js +++ b/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js @@ -23,12 +23,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:22.000] Search path: /user/username/projects/myproject Info 2 [00:00:23.000] For info: /user/username/projects/myproject/app.ts :: No config files found. Info 3 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root diff --git a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js index 768e7249e3318..c138e74b710e1 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js +++ b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js @@ -39,12 +39,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/fileA.ts :: Config file name: /user/username/projects/myproject/src/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/src/tsconfig.json @@ -122,25 +116,25 @@ Info 39 [00:01:11.000] Projects: /user/username/projects/myproject/src/tscon After request PolledWatches:: -/user/username/projects/myproject/src/package.json: +/user/username/projects/myproject/src/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {} -/user/username/projects/myproject/src/fileb.mts: +/user/username/projects/myproject/src/fileb.mts: *new* {} -/a/lib/lib.es2016.full.d.ts: +/a/lib/lib.es2016.full.d.ts: *new* {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 39 [00:01:12.000] response: @@ -158,79 +152,13 @@ Before running timeout callbacks {"name":"app","version":"1.0.0"} -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 46 [00:01:22.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation Info 47 [00:01:23.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json Info 48 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:25.000] Running: /user/username/projects/myproject/src/tsconfig.json Info 50 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Info 51 [00:01:27.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. @@ -274,28 +202,6 @@ Info 74 [00:02:02.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 75 [00:02:03.000] request: { "command": "geterr", @@ -310,208 +216,32 @@ Info 75 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 76 [00:02:04.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 77 [00:02:05.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 78 [00:02:06.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 79 [00:02:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Info 80 [00:02:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 81 [00:02:09.000] Modify package json file to add type module Info 82 [00:02:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Info 83 [00:02:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation @@ -523,79 +253,13 @@ Before running timeout callbacks {"name":"app","version":"1.0.0","type":"module"} -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 87 [00:02:18.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation Info 88 [00:02:19.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json Info 89 [00:02:20.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 90 [00:02:21.000] Running: /user/username/projects/myproject/src/tsconfig.json Info 91 [00:02:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Info 92 [00:02:23.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. @@ -639,28 +303,6 @@ Info 115 [00:02:58.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 116 [00:02:59.000] request: { "command": "geterr", @@ -675,84 +317,94 @@ Info 116 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 117 [00:03:00.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 118 [00:03:01.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running +Before running immediate callbacks and checking length (1) + +Info 119 [00:03:02.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +Before running immediate callbacks and checking length (1) + +Before running immediate callbacks and checking length (1) + +Info 120 [00:03:03.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +Info 121 [00:03:04.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} +Before running immediate callbacks and checking length (1) + +Info 122 [00:03:05.000] Delete package.json +Info 123 [00:03:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 124 [00:03:08.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 125 [00:03:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 126 [00:03:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 127 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 128 [00:03:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Before running timeout callbacks +//// [/user/username/projects/myproject/package.json] deleted + +Info 129 [00:03:13.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 130 [00:03:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 131 [00:03:15.000] Scheduled: *ensureProjectForOpenFiles* +After running timeout callbacks + +Before running timeout callbacks + +Info 132 [00:03:16.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 133 [00:03:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 134 [00:03:18.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 135 [00:03:19.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 136 [00:03:20.000] File '/package.json' does not exist according to earlier cached lookups. +Info 137 [00:03:21.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 138 [00:03:22.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 139 [00:03:23.000] File '/user/username/projects/package.json' does not exist. +Info 140 [00:03:24.000] File '/user/username/package.json' does not exist. +Info 141 [00:03:25.000] File '/user/package.json' does not exist. +Info 142 [00:03:26.000] File '/package.json' does not exist according to earlier cached lookups. +Info 143 [00:03:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 144 [00:03:28.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 145 [00:03:29.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 146 [00:03:30.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 147 [00:03:31.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 148 [00:03:32.000] File '/package.json' does not exist according to earlier cached lookups. +Info 149 [00:03:33.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 150 [00:03:34.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 151 [00:03:35.000] File '/package.json' does not exist according to earlier cached lookups. +Info 152 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 153 [00:03:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 154 [00:03:38.000] Different program with same set of files +Info 155 [00:03:39.000] Running: *ensureProjectForOpenFiles* +Info 156 [00:03:40.000] Before ensureProjectForOpenFiles: +Info 157 [00:03:41.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 157 [00:03:42.000] Files (3) + +Info 157 [00:03:43.000] ----------------------------------------------- +Info 157 [00:03:44.000] Open files: +Info 157 [00:03:45.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 157 [00:03:46.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 157 [00:03:47.000] After ensureProjectForOpenFiles: +Info 158 [00:03:48.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 158 [00:03:49.000] Files (3) + +Info 158 [00:03:50.000] ----------------------------------------------- +Info 158 [00:03:51.000] Open files: +Info 158 [00:03:52.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 158 [00:03:53.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 158 [00:03:54.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 159 [00:03:55.000] event: + {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} +After running timeout callbacks + PolledWatches:: /user/username/projects/myproject/src/package.json: {"pollingInterval":2000} @@ -760,260 +412,8 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 119 [00:03:02.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 120 [00:03:03.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 121 [00:03:04.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 122 [00:03:05.000] Delete package.json -Info 123 [00:03:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 124 [00:03:08.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 125 [00:03:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 126 [00:03:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 127 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 128 [00:03:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Before running timeout callbacks -//// [/user/username/projects/myproject/package.json] deleted - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 129 [00:03:13.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 130 [00:03:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 131 [00:03:15.000] Scheduled: *ensureProjectForOpenFiles* -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 132 [00:03:16.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 133 [00:03:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 134 [00:03:18.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 135 [00:03:19.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 136 [00:03:20.000] File '/package.json' does not exist according to earlier cached lookups. -Info 137 [00:03:21.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 138 [00:03:22.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 139 [00:03:23.000] File '/user/username/projects/package.json' does not exist. -Info 140 [00:03:24.000] File '/user/username/package.json' does not exist. -Info 141 [00:03:25.000] File '/user/package.json' does not exist. -Info 142 [00:03:26.000] File '/package.json' does not exist according to earlier cached lookups. -Info 143 [00:03:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 144 [00:03:28.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 145 [00:03:29.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 146 [00:03:30.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 147 [00:03:31.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 148 [00:03:32.000] File '/package.json' does not exist according to earlier cached lookups. -Info 149 [00:03:33.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 150 [00:03:34.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 151 [00:03:35.000] File '/package.json' does not exist according to earlier cached lookups. -Info 152 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 153 [00:03:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 154 [00:03:38.000] Different program with same set of files -Info 155 [00:03:39.000] Running: *ensureProjectForOpenFiles* -Info 156 [00:03:40.000] Before ensureProjectForOpenFiles: -Info 157 [00:03:41.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 157 [00:03:42.000] Files (3) - -Info 157 [00:03:43.000] ----------------------------------------------- -Info 157 [00:03:44.000] Open files: -Info 157 [00:03:45.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 157 [00:03:46.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 157 [00:03:47.000] After ensureProjectForOpenFiles: -Info 158 [00:03:48.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 158 [00:03:49.000] Files (3) - -Info 158 [00:03:50.000] ----------------------------------------------- -Info 158 [00:03:51.000] Open files: -Info 158 [00:03:52.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 158 [00:03:53.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 158 [00:03:54.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 159 [00:03:55.000] event: - {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} +/user/username/projects/package.json: *new* + {"pollingInterval":2000} FsWatches:: /user/username/projects/myproject/src/tsconfig.json: @@ -1030,664 +430,104 @@ FsWatchesRecursive:: {} Info 160 [00:03:56.000] request: - { - "command": "geterr", - "arguments": { - "delay": 0, - "files": [ - "/user/username/projects/myproject/src/fileA.ts" - ] - }, - "seq": 4, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 161 [00:03:57.000] response: - { - "responseRequired": false - } -Before checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 162 [00:03:58.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 163 [00:03:59.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 164 [00:04:00.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 165 [00:04:01.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 166 [00:04:02.000] Modify package json file to without type module -Info 167 [00:04:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 168 [00:04:06.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 169 [00:04:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Before running timeout callbacks -//// [/user/username/projects/myproject/package.json] -{"name":"app","version":"1.0.0"} - - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 170 [00:04:08.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 171 [00:04:09.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 172 [00:04:10.000] Scheduled: *ensureProjectForOpenFiles* -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 173 [00:04:11.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 174 [00:04:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 175 [00:04:13.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 176 [00:04:14.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 177 [00:04:15.000] File '/package.json' does not exist according to earlier cached lookups. -Info 178 [00:04:16.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 179 [00:04:17.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 180 [00:04:18.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 181 [00:04:19.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 182 [00:04:20.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 183 [00:04:21.000] Module resolution kind is not specified, using 'Node16'. -Info 184 [00:04:22.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. -Info 185 [00:04:23.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. -Info 186 [00:04:24.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 187 [00:04:25.000] File '/user/username/projects/myproject/src/fileB.mts' exists - use it as a name resolution result. -Info 188 [00:04:26.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 189 [00:04:27.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 190 [00:04:28.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 191 [00:04:29.000] File '/package.json' does not exist according to earlier cached lookups. -Info 192 [00:04:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 193 [00:04:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 194 [00:04:32.000] Different program with same set of files -Info 195 [00:04:33.000] Running: *ensureProjectForOpenFiles* -Info 196 [00:04:34.000] Before ensureProjectForOpenFiles: -Info 197 [00:04:35.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 197 [00:04:36.000] Files (3) - -Info 197 [00:04:37.000] ----------------------------------------------- -Info 197 [00:04:38.000] Open files: -Info 197 [00:04:39.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 197 [00:04:40.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 197 [00:04:41.000] After ensureProjectForOpenFiles: -Info 198 [00:04:42.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 198 [00:04:43.000] Files (3) - -Info 198 [00:04:44.000] ----------------------------------------------- -Info 198 [00:04:45.000] Open files: -Info 198 [00:04:46.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 198 [00:04:47.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 198 [00:04:48.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 199 [00:04:49.000] event: - {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 200 [00:04:50.000] request: - { - "command": "geterr", - "arguments": { - "delay": 0, - "files": [ - "/user/username/projects/myproject/src/fileA.ts" - ] - }, - "seq": 5, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} + { + "command": "geterr", + "arguments": { + "delay": 0, + "files": [ + "/user/username/projects/myproject/src/fileA.ts" + ] + }, + "seq": 4, + "type": "request" + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} +After request -Info 201 [00:04:51.000] response: +Info 161 [00:03:57.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 202 [00:04:52.000] event: +Info 162 [00:03:58.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 203 [00:04:53.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} +Info 163 [00:03:59.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 204 [00:04:54.000] event: +Info 164 [00:04:00.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 205 [00:04:55.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} +Info 165 [00:04:01.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 206 [00:04:56.000] Delete package.json -Info 207 [00:04:58.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 208 [00:04:59.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 209 [00:05:00.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 166 [00:04:02.000] Modify package json file to without type module +Info 167 [00:04:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 168 [00:04:06.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 169 [00:04:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks -//// [/user/username/projects/myproject/package.json] deleted - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} +//// [/user/username/projects/myproject/package.json] +{"name":"app","version":"1.0.0"} -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -Info 210 [00:05:01.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 211 [00:05:02.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 212 [00:05:03.000] Scheduled: *ensureProjectForOpenFiles* +Info 170 [00:04:08.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 171 [00:04:09.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 172 [00:04:10.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} +Before running timeout callbacks -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} +Info 173 [00:04:11.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 174 [00:04:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 175 [00:04:13.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 176 [00:04:14.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 177 [00:04:15.000] File '/package.json' does not exist according to earlier cached lookups. +Info 178 [00:04:16.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 179 [00:04:17.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 180 [00:04:18.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 181 [00:04:19.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 182 [00:04:20.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 183 [00:04:21.000] Module resolution kind is not specified, using 'Node16'. +Info 184 [00:04:22.000] Resolving in CJS mode with conditions 'node', 'require', 'types'. +Info 185 [00:04:23.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +Info 186 [00:04:24.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 187 [00:04:25.000] File '/user/username/projects/myproject/src/fileB.mts' exists - use it as a name resolution result. +Info 188 [00:04:26.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 189 [00:04:27.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 190 [00:04:28.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 191 [00:04:29.000] File '/package.json' does not exist according to earlier cached lookups. +Info 192 [00:04:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 193 [00:04:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 194 [00:04:32.000] Different program with same set of files +Info 195 [00:04:33.000] Running: *ensureProjectForOpenFiles* +Info 196 [00:04:34.000] Before ensureProjectForOpenFiles: +Info 197 [00:04:35.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 197 [00:04:36.000] Files (3) -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} +Info 197 [00:04:37.000] ----------------------------------------------- +Info 197 [00:04:38.000] Open files: +Info 197 [00:04:39.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 197 [00:04:40.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 197 [00:04:41.000] After ensureProjectForOpenFiles: +Info 198 [00:04:42.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 198 [00:04:43.000] Files (3) -Before running timeout callbacks +Info 198 [00:04:44.000] ----------------------------------------------- +Info 198 [00:04:45.000] Open files: +Info 198 [00:04:46.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 198 [00:04:47.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 198 [00:04:48.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 199 [00:04:49.000] event: + {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} +After running timeout callbacks PolledWatches:: /user/username/projects/myproject/src/package.json: @@ -1697,6 +537,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/package.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/src/tsconfig.json: {} @@ -1711,6 +555,60 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} +Info 200 [00:04:50.000] request: + { + "command": "geterr", + "arguments": { + "delay": 0, + "files": [ + "/user/username/projects/myproject/src/fileA.ts" + ] + }, + "seq": 5, + "type": "request" + } +Before request + +After request + +Info 201 [00:04:51.000] response: + { + "responseRequired": false + } +Before checking timeout queue length (1) and running + +Info 202 [00:04:52.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +After checking timeout queue length (1) and running + +Before running immediate callbacks and checking length (1) + +Info 203 [00:04:53.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} +Before running immediate callbacks and checking length (1) + +Before running immediate callbacks and checking length (1) + +Info 204 [00:04:54.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +Info 205 [00:04:55.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} +Before running immediate callbacks and checking length (1) + +Info 206 [00:04:56.000] Delete package.json +Info 207 [00:04:58.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 208 [00:04:59.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 209 [00:05:00.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Before running timeout callbacks +//// [/user/username/projects/myproject/package.json] deleted + +Info 210 [00:05:01.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 211 [00:05:02.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 212 [00:05:03.000] Scheduled: *ensureProjectForOpenFiles* +After running timeout callbacks + +Before running timeout callbacks + Info 213 [00:05:04.000] Running: /user/username/projects/myproject/src/tsconfig.json Info 214 [00:05:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Info 215 [00:05:06.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. @@ -1764,7 +662,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: @@ -1795,220 +693,28 @@ Info 242 [00:05:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 243 [00:05:46.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 244 [00:05:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 245 [00:05:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 246 [00:05:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Info 247 [00:05:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js index e18134d999b25..95a39510ef23d 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js +++ b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js @@ -39,12 +39,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/fileA.ts :: Config file name: /user/username/projects/myproject/src/tsconfig.json Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/src/tsconfig.json @@ -122,25 +116,25 @@ Info 39 [00:01:11.000] Projects: /user/username/projects/myproject/src/tscon After request PolledWatches:: -/user/username/projects/myproject/src/package.json: +/user/username/projects/myproject/src/package.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: +/user/username/projects/myproject/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {} -/user/username/projects/myproject/src/fileb.mts: +/user/username/projects/myproject/src/fileb.mts: *new* {} -/a/lib/lib.es2016.full.d.ts: +/a/lib/lib.es2016.full.d.ts: *new* {} -/user/username/projects/myproject/package.json: +/user/username/projects/myproject/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 39 [00:01:12.000] response: @@ -158,79 +152,13 @@ Before running timeout callbacks {"name":"app","version":"1.0.0","type":"module"} -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 46 [00:01:22.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation Info 47 [00:01:23.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json Info 48 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 49 [00:01:25.000] Running: /user/username/projects/myproject/src/tsconfig.json Info 50 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Info 51 [00:01:27.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. @@ -274,28 +202,6 @@ Info 74 [00:02:02.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 75 [00:02:03.000] request: { "command": "geterr", @@ -310,208 +216,32 @@ Info 75 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 76 [00:02:04.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 77 [00:02:05.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 78 [00:02:06.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 79 [00:02:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Info 80 [00:02:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 81 [00:02:09.000] Modify package json file to remove type module Info 82 [00:02:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Info 83 [00:02:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation @@ -523,79 +253,13 @@ Before running timeout callbacks {"name":"app","version":"1.0.0"} -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 87 [00:02:18.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation Info 88 [00:02:19.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json Info 89 [00:02:20.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 90 [00:02:21.000] Running: /user/username/projects/myproject/src/tsconfig.json Info 91 [00:02:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Info 92 [00:02:23.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. @@ -639,28 +303,6 @@ Info 115 [00:02:58.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 116 [00:02:59.000] request: { "command": "geterr", @@ -675,84 +317,95 @@ Info 116 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 117 [00:03:00.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 118 [00:03:01.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running +Before running immediate callbacks and checking length (1) + +Info 119 [00:03:02.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} +Before running immediate callbacks and checking length (1) + +Before running immediate callbacks and checking length (1) + +Info 120 [00:03:03.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +Info 121 [00:03:04.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} +Before running immediate callbacks and checking length (1) + +Info 122 [00:03:05.000] Delete package.json +Info 123 [00:03:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 124 [00:03:08.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 125 [00:03:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 126 [00:03:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 127 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 128 [00:03:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Before running timeout callbacks +//// [/user/username/projects/myproject/package.json] deleted + +Info 129 [00:03:13.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 130 [00:03:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 131 [00:03:15.000] Scheduled: *ensureProjectForOpenFiles* +After running timeout callbacks + +Before running timeout callbacks + +Info 132 [00:03:16.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 133 [00:03:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 134 [00:03:18.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 135 [00:03:19.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 136 [00:03:20.000] File '/package.json' does not exist according to earlier cached lookups. +Info 137 [00:03:21.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 138 [00:03:22.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 139 [00:03:23.000] File '/user/username/projects/package.json' does not exist. +Info 140 [00:03:24.000] File '/user/username/package.json' does not exist. +Info 141 [00:03:25.000] File '/user/package.json' does not exist. +Info 142 [00:03:26.000] File '/package.json' does not exist according to earlier cached lookups. +Info 143 [00:03:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 144 [00:03:28.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 145 [00:03:29.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 146 [00:03:30.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 147 [00:03:31.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 148 [00:03:32.000] File '/package.json' does not exist according to earlier cached lookups. +Info 149 [00:03:33.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. +Info 150 [00:03:34.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 151 [00:03:35.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 152 [00:03:36.000] File '/package.json' does not exist according to earlier cached lookups. +Info 153 [00:03:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 154 [00:03:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 155 [00:03:39.000] Different program with same set of files +Info 156 [00:03:40.000] Running: *ensureProjectForOpenFiles* +Info 157 [00:03:41.000] Before ensureProjectForOpenFiles: +Info 158 [00:03:42.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 158 [00:03:43.000] Files (3) + +Info 158 [00:03:44.000] ----------------------------------------------- +Info 158 [00:03:45.000] Open files: +Info 158 [00:03:46.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 158 [00:03:47.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 158 [00:03:48.000] After ensureProjectForOpenFiles: +Info 159 [00:03:49.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 159 [00:03:50.000] Files (3) + +Info 159 [00:03:51.000] ----------------------------------------------- +Info 159 [00:03:52.000] Open files: +Info 159 [00:03:53.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 159 [00:03:54.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 159 [00:03:55.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 160 [00:03:56.000] event: + {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} +After running timeout callbacks + PolledWatches:: /user/username/projects/myproject/src/package.json: {"pollingInterval":2000} @@ -760,261 +413,8 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 119 [00:03:02.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 120 [00:03:03.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 121 [00:03:04.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 122 [00:03:05.000] Delete package.json -Info 123 [00:03:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 124 [00:03:08.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 125 [00:03:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 126 [00:03:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 127 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 128 [00:03:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Before running timeout callbacks -//// [/user/username/projects/myproject/package.json] deleted - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 129 [00:03:13.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 130 [00:03:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 131 [00:03:15.000] Scheduled: *ensureProjectForOpenFiles* -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 132 [00:03:16.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 133 [00:03:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 134 [00:03:18.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 135 [00:03:19.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 136 [00:03:20.000] File '/package.json' does not exist according to earlier cached lookups. -Info 137 [00:03:21.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 138 [00:03:22.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 139 [00:03:23.000] File '/user/username/projects/package.json' does not exist. -Info 140 [00:03:24.000] File '/user/username/package.json' does not exist. -Info 141 [00:03:25.000] File '/user/package.json' does not exist. -Info 142 [00:03:26.000] File '/package.json' does not exist according to earlier cached lookups. -Info 143 [00:03:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 144 [00:03:28.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 145 [00:03:29.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 146 [00:03:30.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 147 [00:03:31.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 148 [00:03:32.000] File '/package.json' does not exist according to earlier cached lookups. -Info 149 [00:03:33.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. -Info 150 [00:03:34.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 151 [00:03:35.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 152 [00:03:36.000] File '/package.json' does not exist according to earlier cached lookups. -Info 153 [00:03:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 154 [00:03:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 155 [00:03:39.000] Different program with same set of files -Info 156 [00:03:40.000] Running: *ensureProjectForOpenFiles* -Info 157 [00:03:41.000] Before ensureProjectForOpenFiles: -Info 158 [00:03:42.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 158 [00:03:43.000] Files (3) - -Info 158 [00:03:44.000] ----------------------------------------------- -Info 158 [00:03:45.000] Open files: -Info 158 [00:03:46.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 158 [00:03:47.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 158 [00:03:48.000] After ensureProjectForOpenFiles: -Info 159 [00:03:49.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 159 [00:03:50.000] Files (3) - -Info 159 [00:03:51.000] ----------------------------------------------- -Info 159 [00:03:52.000] Open files: -Info 159 [00:03:53.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 159 [00:03:54.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 159 [00:03:55.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 160 [00:03:56.000] event: - {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} +/user/username/projects/package.json: *new* + {"pollingInterval":2000} FsWatches:: /user/username/projects/myproject/src/tsconfig.json: @@ -1042,646 +442,86 @@ Info 161 [00:03:57.000] request: "seq": 4, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 162 [00:03:58.000] response: - { - "responseRequired": false - } -Before checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 163 [00:03:59.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 164 [00:04:00.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 165 [00:04:01.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 166 [00:04:02.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 167 [00:04:03.000] Modify package json file to add type module -Info 168 [00:04:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 169 [00:04:07.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 170 [00:04:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Before running timeout callbacks -//// [/user/username/projects/myproject/package.json] -{"name":"app","version":"1.0.0","type":"module"} - - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 171 [00:04:09.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 172 [00:04:10.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 173 [00:04:11.000] Scheduled: *ensureProjectForOpenFiles* -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 174 [00:04:12.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 175 [00:04:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 176 [00:04:14.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 177 [00:04:15.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 178 [00:04:16.000] File '/package.json' does not exist according to earlier cached lookups. -Info 179 [00:04:17.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 180 [00:04:18.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 181 [00:04:19.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 182 [00:04:20.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 183 [00:04:21.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 184 [00:04:22.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 185 [00:04:23.000] File '/package.json' does not exist according to earlier cached lookups. -Info 186 [00:04:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 187 [00:04:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 188 [00:04:26.000] Different program with same set of files -Info 189 [00:04:27.000] Running: *ensureProjectForOpenFiles* -Info 190 [00:04:28.000] Before ensureProjectForOpenFiles: -Info 191 [00:04:29.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 191 [00:04:30.000] Files (3) - -Info 191 [00:04:31.000] ----------------------------------------------- -Info 191 [00:04:32.000] Open files: -Info 191 [00:04:33.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 191 [00:04:34.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 191 [00:04:35.000] After ensureProjectForOpenFiles: -Info 192 [00:04:36.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 192 [00:04:37.000] Files (3) - -Info 192 [00:04:38.000] ----------------------------------------------- -Info 192 [00:04:39.000] Open files: -Info 192 [00:04:40.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 192 [00:04:41.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 192 [00:04:42.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 193 [00:04:43.000] event: - {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} -After running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 194 [00:04:44.000] request: - { - "command": "geterr", - "arguments": { - "delay": 0, - "files": [ - "/user/username/projects/myproject/src/fileA.ts" - ] - }, - "seq": 5, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} +Before request After request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 195 [00:04:45.000] response: +Info 162 [00:03:58.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 196 [00:04:46.000] event: +Info 163 [00:03:59.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 197 [00:04:47.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +Info 164 [00:04:00.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 198 [00:04:48.000] event: +Info 165 [00:04:01.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 199 [00:04:49.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} +Info 166 [00:04:02.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 200 [00:04:50.000] Delete package.json -Info 201 [00:04:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 202 [00:04:53.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 203 [00:04:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 167 [00:04:03.000] Modify package json file to add type module +Info 168 [00:04:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 169 [00:04:07.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 170 [00:04:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks -//// [/user/username/projects/myproject/package.json] deleted - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} +//// [/user/username/projects/myproject/package.json] +{"name":"app","version":"1.0.0","type":"module"} -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -Info 204 [00:04:55.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 205 [00:04:56.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 206 [00:04:57.000] Scheduled: *ensureProjectForOpenFiles* +Info 171 [00:04:09.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 172 [00:04:10.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 173 [00:04:11.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} +Before running timeout callbacks -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} +Info 174 [00:04:12.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 175 [00:04:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 176 [00:04:14.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 177 [00:04:15.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 178 [00:04:16.000] File '/package.json' does not exist according to earlier cached lookups. +Info 179 [00:04:17.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 180 [00:04:18.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 181 [00:04:19.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 182 [00:04:20.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 183 [00:04:21.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 184 [00:04:22.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 185 [00:04:23.000] File '/package.json' does not exist according to earlier cached lookups. +Info 186 [00:04:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 187 [00:04:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 188 [00:04:26.000] Different program with same set of files +Info 189 [00:04:27.000] Running: *ensureProjectForOpenFiles* +Info 190 [00:04:28.000] Before ensureProjectForOpenFiles: +Info 191 [00:04:29.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 191 [00:04:30.000] Files (3) -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} +Info 191 [00:04:31.000] ----------------------------------------------- +Info 191 [00:04:32.000] Open files: +Info 191 [00:04:33.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 191 [00:04:34.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 191 [00:04:35.000] After ensureProjectForOpenFiles: +Info 192 [00:04:36.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 192 [00:04:37.000] Files (3) -Before running timeout callbacks +Info 192 [00:04:38.000] ----------------------------------------------- +Info 192 [00:04:39.000] Open files: +Info 192 [00:04:40.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 192 [00:04:41.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 192 [00:04:42.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 193 [00:04:43.000] event: + {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} +After running timeout callbacks PolledWatches:: /user/username/projects/myproject/src/package.json: @@ -1691,6 +531,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/package.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/src/tsconfig.json: {} @@ -1705,6 +549,60 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} +Info 194 [00:04:44.000] request: + { + "command": "geterr", + "arguments": { + "delay": 0, + "files": [ + "/user/username/projects/myproject/src/fileA.ts" + ] + }, + "seq": 5, + "type": "request" + } +Before request + +After request + +Info 195 [00:04:45.000] response: + { + "responseRequired": false + } +Before checking timeout queue length (1) and running + +Info 196 [00:04:46.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +After checking timeout queue length (1) and running + +Before running immediate callbacks and checking length (1) + +Info 197 [00:04:47.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +Before running immediate callbacks and checking length (1) + +Before running immediate callbacks and checking length (1) + +Info 198 [00:04:48.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} +Info 199 [00:04:49.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} +Before running immediate callbacks and checking length (1) + +Info 200 [00:04:50.000] Delete package.json +Info 201 [00:04:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 202 [00:04:53.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 203 [00:04:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Before running timeout callbacks +//// [/user/username/projects/myproject/package.json] deleted + +Info 204 [00:04:55.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 205 [00:04:56.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 206 [00:04:57.000] Scheduled: *ensureProjectForOpenFiles* +After running timeout callbacks + +Before running timeout callbacks + Info 207 [00:04:58.000] Running: /user/username/projects/myproject/src/tsconfig.json Info 208 [00:04:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Info 209 [00:05:00.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. @@ -1757,7 +655,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/package.json: +/user/username/projects/package.json: *new* {"pollingInterval":2000} FsWatches:: @@ -1788,220 +686,28 @@ Info 235 [00:05:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 236 [00:05:39.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 237 [00:05:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 238 [00:05:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 239 [00:05:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Info 240 [00:05:43.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/package.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/package.json: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/src/tsconfig.json: - {} -/user/username/projects/myproject/src/fileb.mts: - {} -/a/lib/lib.es2016.full.d.ts: - {} -/user/username/projects/myproject/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js index 5200ac9388c56..b222be17d6941 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-importability-within-a-file.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js index 6c0d8ae2740c9..76e1e00f3d54e 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/caches-module-specifiers-within-a-file.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { @@ -873,26 +749,6 @@ Info 55 [00:01:55.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 56 [00:01:56.000] getCompletionData: Get current token: * Info 57 [00:01:57.000] getCompletionData: Is inside comment: * Info 58 [00:01:58.000] getCompletionData: Get previous token: * @@ -906,26 +762,6 @@ Info 65 [00:02:05.000] getCompletionData: Semantic work: * Info 66 [00:02:06.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 67 [00:02:07.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js index 4807d83148642..9359bd982f50e 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/does-not-invalidate-the-cache-when-new-files-are-added.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { @@ -869,26 +745,6 @@ Before running timeout callbacks export const foo = 0; -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 59 [00:02:01.000] Running: /tsconfig.json Info 60 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /src/a2.ts 500 undefined WatchType: Closed Script info Info 61 [00:02:03.000] Starting updateGraphWorker: Project: /tsconfig.json @@ -969,7 +825,7 @@ FsWatches:: {} /package.json: {} -/src/a2.ts: +/src/a2.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js index 71a8a652ef5de..61250c5644421 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { @@ -873,26 +749,6 @@ Info 55 [00:01:55.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 56 [00:01:56.000] getCompletionData: Get current token: * Info 57 [00:01:57.000] getCompletionData: Is inside comment: * Info 58 [00:01:58.000] getCompletionData: Get previous token: * @@ -906,26 +762,6 @@ Info 65 [00:02:05.000] getCompletionData: Semantic work: * Info 66 [00:02:06.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 67 [00:02:07.000] response: { "response": { @@ -1021,44 +857,4 @@ Before running timeout callbacks {} -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - After running timeout callbacks - -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js index 94a45050eb7b2..31ad379879ee1 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-local-packageJson-changes.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { @@ -867,46 +743,6 @@ Before running timeout callbacks {} -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - After running timeout callbacks -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 57 [00:02:00.000] moduleSpecifierCache count: 0 \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js index f7f1164c598de..38789f2a98a64 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-module-resolution-settings-change.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { @@ -869,26 +745,6 @@ Before running timeout callbacks { "compilerOptions": { "moduleResolution": "classic" }, "include": ["src"] } -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 59 [00:02:02.000] Running: /tsconfig.json Info 60 [00:02:03.000] Reloading configured project /tsconfig.json Info 61 [00:02:04.000] Config: /tsconfig.json : { @@ -942,24 +798,4 @@ Info 68 [00:02:35.000] FileName: /src/c.ts ProjectRootPath: undefined Info 68 [00:02:36.000] Projects: /tsconfig.json After running timeout callbacks -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 68 [00:02:37.000] moduleSpecifierCache count: 0 \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js index 2ecac84fc8683..de399f9f3e684 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-symlinks-are-added-or-removed.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { @@ -888,6 +764,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b-link.ts: + {} + FsWatchesRecursive:: /src: {} @@ -954,22 +834,4 @@ Info 80 [00:02:47.000] FileName: /src/c.ts ProjectRootPath: undefined Info 80 [00:02:48.000] Projects: /tsconfig.json After running timeout callbacks -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 80 [00:02:49.000] moduleSpecifierCache count: 0 \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js index 484aec97d6752..68e445ea61aa7 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-the-cache-when-user-preferences-change.js @@ -35,12 +35,6 @@ declare module 'ambient' {} export declare function observable(): unknown; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:29.000] Search path: /src Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json Info 4 [00:00:31.000] Creating configuration project /tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/src/ambient.d.ts: +/src/ambient.d.ts: *new* {} -/src/b-link.ts: +/src/b-link.ts: *new* {} -/src/b.ts: +/src/b.ts: *new* {} -/src/c.ts: +/src/c.ts: *new* {} -/package.json: +/package.json: *new* {} FsWatchesRecursive:: -/src: +/src: *new* {} -/node_modules: +/node_modules: *new* {} Info 28 [00:01:04.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:05.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/b.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 30 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:07.000] Search path: /src Info 32 [00:01:08.000] For info: /src/b.ts :: Config file name: /tsconfig.json @@ -212,6 +182,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/b.ts: + {} + FsWatchesRecursive:: /src: {} @@ -233,28 +207,6 @@ Info 34 [00:01:21.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/src/c.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 35 [00:01:22.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info Info 36 [00:01:23.000] Search path: /src Info 37 [00:01:24.000] For info: /src/c.ts :: Config file name: /tsconfig.json @@ -289,6 +241,10 @@ FsWatches:: /package.json: {} +FsWatches *deleted*:: +/src/c.ts: + {} + FsWatchesRecursive:: /src: {} @@ -315,50 +271,10 @@ Info 39 [00:01:39.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 41 [00:01:41.000] response: { "responseRequired": false @@ -376,26 +292,6 @@ Info 42 [00:01:42.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 43 [00:01:43.000] getCompletionData: Get current token: * Info 44 [00:01:44.000] getCompletionData: Is inside comment: * Info 45 [00:01:45.000] getCompletionData: Get previous token: * @@ -409,26 +305,6 @@ Info 52 [00:01:52.000] getCompletionData: Semantic work: * Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 54 [00:01:54.000] response: { "response": { @@ -876,50 +752,10 @@ Info 56 [00:01:56.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 57 [00:01:57.000] response: {"seq":0,"type":"response","command":"configure","request_seq":6,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 58 [00:01:58.000] response: { "responseRequired": false @@ -941,26 +777,6 @@ Info 61 [00:02:01.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 62 [00:02:02.000] getCompletionData: Get current token: * Info 63 [00:02:03.000] getCompletionData: Is inside comment: * Info 64 [00:02:04.000] getCompletionData: Get previous token: * @@ -972,26 +788,6 @@ Info 69 [00:02:09.000] getCompletionData: Semantic work: * Info 70 [00:02:10.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 71 [00:02:11.000] response: { "response": { @@ -1440,50 +1236,10 @@ Info 74 [00:02:14.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 75 [00:02:15.000] response: {"seq":0,"type":"response","command":"configure","request_seq":8,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 76 [00:02:16.000] response: { "responseRequired": false @@ -1501,26 +1257,6 @@ Info 77 [00:02:17.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 78 [00:02:18.000] getCompletionData: Get current token: * Info 79 [00:02:19.000] getCompletionData: Is inside comment: * Info 80 [00:02:20.000] getCompletionData: Get previous token: * @@ -1532,26 +1268,6 @@ Info 85 [00:02:25.000] getCompletionData: Semantic work: * Info 86 [00:02:26.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} -/src/ambient.d.ts: - {} -/src/b-link.ts: - {} -/package.json: - {} - -FsWatchesRecursive:: -/src: - {} -/node_modules: - {} - Info 87 [00:02:27.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js index c4d1aeb336cc8..0071f6639e576 100644 --- a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js +++ b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js @@ -37,12 +37,6 @@ export const ghijkl = a.abcdef; {"references":[{"path":"./a"},{"path":"./b"}],"files":[]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] Search path: /a Info 3 [00:00:20.000] For info: /a/index.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:21.000] Creating configuration project /a/tsconfig.json @@ -92,19 +86,19 @@ Info 23 [00:00:48.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} -/tsconfig.json: +/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 23 [00:00:49.000] response: @@ -122,22 +116,6 @@ Info 24 [00:00:50.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 25 [00:00:51.000] Loading configured project /tsconfig.json Info 26 [00:00:52.000] Config: /tsconfig.json : { "rootNames": [], @@ -202,7 +180,7 @@ PolledWatches:: {"pollingInterval":500} /a/node_modules/@types: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -210,15 +188,15 @@ FsWatches:: {} /tsconfig.json: {} -/b/tsconfig.json: +/b/tsconfig.json: *new* {} -/b/index.ts: +/b/index.ts: *new* {} FsWatchesRecursive:: /a: {} -/b: +/b: *new* {} Info 44 [00:01:10.000] response: diff --git a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js index 0c7ce4cee5079..614d27ee0e8e2 100644 --- a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js +++ b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js @@ -34,12 +34,6 @@ import a = require("../a"); export const ghijkl = a.abcdef; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a Info 3 [00:00:18.000] For info: /a/index.ts :: Config file name: /a/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/tsconfig.json @@ -81,17 +75,17 @@ Info 19 [00:00:39.000] Projects: /a/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/node_modules/@types: +/a/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/tsconfig.json: +/a/tsconfig.json: *new* {} FsWatchesRecursive:: -/a: +/a: *new* {} Info 19 [00:00:40.000] response: @@ -109,20 +103,6 @@ Info 20 [00:00:41.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} - Info 21 [00:00:42.000] Search path: /b Info 22 [00:00:43.000] For info: /b/index.ts :: Config file name: /b/tsconfig.json Info 23 [00:00:44.000] Creating configuration project /b/tsconfig.json @@ -183,19 +163,19 @@ PolledWatches:: {"pollingInterval":500} /a/node_modules/@types: {"pollingInterval":500} -/b/node_modules/@types: +/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: /a/tsconfig.json: {} -/b/tsconfig.json: +/b/tsconfig.json: *new* {} FsWatchesRecursive:: /a: {} -/b: +/b: *new* {} Info 38 [00:01:10.000] response: @@ -214,48 +194,8 @@ Info 39 [00:01:11.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/b: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/node_modules/@types: - {"pollingInterval":500} -/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/tsconfig.json: - {} -/b/tsconfig.json: - {} - -FsWatchesRecursive:: -/a: - {} -/b: - {} - Info 40 [00:01:12.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js b/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js index aa82393fc4d71..7dd2deb1a00a0 100644 --- a/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js +++ b/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js @@ -29,12 +29,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/file1.js :: Config file name: /a/b/jsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/jsconfig.json @@ -81,21 +75,21 @@ Info 17 [00:00:37.000] Projects: /a/b/jsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} -/a/b/bower_components: +/a/b/bower_components: *new* {"pollingInterval":500} -/a/b/node_modules: +/a/b/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/b/jsconfig.json: +/a/b/jsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 17 [00:00:38.000] response: @@ -115,44 +109,8 @@ Info 18 [00:00:39.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/bower_components: - {"pollingInterval":500} -/a/b/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/jsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/bower_components: - {"pollingInterval":500} -/a/b/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/jsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 19 [00:00:40.000] response: { "response": [], @@ -171,44 +129,8 @@ Info 20 [00:00:41.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/bower_components: - {"pollingInterval":500} -/a/b/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/jsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/bower_components: - {"pollingInterval":500} -/a/b/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/jsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 21 [00:00:42.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js b/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js index 84ab68558f244..8806ab858a790 100644 --- a/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js +++ b/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js @@ -30,12 +30,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/file1.js :: Config file name: /a/b/jsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/jsconfig.json @@ -82,21 +76,21 @@ Info 17 [00:00:37.000] Projects: /a/b/jsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} -/a/b/bower_components: +/a/b/bower_components: *new* {"pollingInterval":500} -/a/b/node_modules: +/a/b/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/b/jsconfig.json: +/a/b/jsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 17 [00:00:38.000] response: @@ -116,44 +110,8 @@ Info 18 [00:00:39.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/bower_components: - {"pollingInterval":500} -/a/b/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/jsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} -/a/b/bower_components: - {"pollingInterval":500} -/a/b/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/jsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 19 [00:00:40.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/occurences/should-be-marked-if-only-on-string-values.js b/tests/baselines/reference/tsserver/occurences/should-be-marked-if-only-on-string-values.js index df24c55ee11b9..47090fc967057 100644 --- a/tests/baselines/reference/tsserver/occurences/should-be-marked-if-only-on-string-values.js +++ b/tests/baselines/reference/tsserver/occurences/should-be-marked-if-only-on-string-values.js @@ -16,12 +16,6 @@ let t3 = { "div": 123 }; let t4 = t3["div"]; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] Search path: /a/b Info 3 [00:00:12.000] For info: /a/b/file1.ts :: No config files found. Info 4 [00:00:13.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -48,15 +42,11 @@ Info 12 [00:00:26.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:27.000] response: { "responseRequired": false @@ -74,28 +64,8 @@ Info 13 [00:00:28.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 14 [00:00:29.000] response: { "response": [ @@ -175,28 +145,8 @@ Info 15 [00:00:30.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 16 [00:00:31.000] response: { "response": [ @@ -248,28 +198,8 @@ Info 17 [00:00:32.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: - -FsWatchesRecursive:: - Info 18 [00:00:33.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js b/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js index 97cd4f0f3317e..77a47b5fdea80 100644 --- a/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js +++ b/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js @@ -38,12 +38,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /user/username/projects/myproject Info 3 [00:00:22.000] For info: /user/username/projects/myproject/file.ts :: No config files found. Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -75,19 +69,17 @@ Info 14 [00:00:38.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 14 [00:00:39.000] response: { "responseRequired": false @@ -106,144 +98,32 @@ Info 15 [00:00:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 16 [00:00:41.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 17 [00:00:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 18 [00:00:43.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 19 [00:00:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} Info 20 [00:00:45.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 21 [00:00:46.000] request: { "command": "updateOpen", @@ -272,36 +152,8 @@ Info 21 [00:00:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 22 [00:00:47.000] response: { "response": true, @@ -321,56 +173,14 @@ Info 23 [00:00:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 24 [00:00:49.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 25 [00:00:50.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 26 [00:00:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 27 [00:00:52.000] Different program with same set of files @@ -378,90 +188,20 @@ Info 28 [00:00:53.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 29 [00:00:54.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[{"start":{"line":4,"offset":9},"end":{"line":4,"offset":10},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 30 [00:00:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} Info 31 [00:00:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 32 [00:00:57.000] request: { "command": "updateOpen", @@ -490,36 +230,8 @@ Info 32 [00:00:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 33 [00:00:58.000] response: { "response": true, @@ -539,56 +251,14 @@ Info 34 [00:00:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 35 [00:01:00.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 36 [00:01:01.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 37 [00:01:02.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:03.000] Different program with same set of files @@ -596,86 +266,16 @@ Info 39 [00:01:04.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 40 [00:01:05.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 41 [00:01:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} Info 42 [00:01:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js b/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js index daa16f913b32f..ff4e02ce4bb97 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js @@ -42,12 +42,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 3 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 4 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -71,12 +65,6 @@ Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts Proje Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 7 [00:00:44.000] response: { "responseRequired": false @@ -94,12 +82,6 @@ Info 8 [00:00:45.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 9 [00:00:46.000] getCompletionData: Get current token: * Info 10 [00:00:47.000] getCompletionData: Is inside comment: * Info 11 [00:00:48.000] getCompletionData: Get previous token: * @@ -108,12 +90,6 @@ Info 13 [00:00:50.000] getCompletionData: Semantic work: * Info 14 [00:00:51.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 15 [00:00:52.000] response: { "response": [ @@ -143,12 +119,6 @@ Info 16 [00:00:53.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 17 [00:00:54.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 18 [00:00:55.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 19 [00:00:56.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -177,12 +147,6 @@ Info 22 [00:01:05.000] FileName: /user/username/projects/myproject/b.ts Proje Info 22 [00:01:06.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 22 [00:01:07.000] response: { "responseRequired": false @@ -200,12 +164,6 @@ Info 23 [00:01:08.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 24 [00:01:09.000] getCompletionData: Get current token: * Info 25 [00:01:10.000] getCompletionData: Is inside comment: * Info 26 [00:01:11.000] getCompletionData: Get previous token: * @@ -214,12 +172,6 @@ Info 28 [00:01:13.000] getCompletionData: Semantic work: * Info 29 [00:01:14.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 30 [00:01:15.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js index fa315a5e304ad..2339b1075aa81 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js @@ -42,12 +42,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 3 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 4 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -71,12 +65,6 @@ Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts Proje Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 7 [00:00:44.000] response: { "responseRequired": false @@ -92,12 +80,6 @@ Info 8 [00:00:45.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 9 [00:00:46.000] Project '/dev/null/inferredProject1*' (Inferred) Info 9 [00:00:47.000] Files (2) @@ -105,12 +87,6 @@ Info 9 [00:00:48.000] ----------------------------------------------- Info 9 [00:00:49.000] Open files: After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 9 [00:00:50.000] response: { "responseRequired": false @@ -126,12 +102,6 @@ Info 10 [00:00:51.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 11 [00:00:52.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 12 [00:00:53.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 13 [00:00:54.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -155,12 +125,6 @@ Info 16 [00:01:01.000] FileName: /user/username/projects/myproject/c.ts Proje Info 16 [00:01:02.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 16 [00:01:03.000] response: { "responseRequired": false @@ -176,12 +140,6 @@ Info 17 [00:01:04.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 18 [00:01:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 19 [00:01:06.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 20 [00:01:07.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -210,12 +168,6 @@ Info 23 [00:01:16.000] FileName: /user/username/projects/myproject/b.ts Proje Info 23 [00:01:17.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 23 [00:01:18.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js index 984faf50c83cd..b7e276a2edafd 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js @@ -45,12 +45,6 @@ interface Array { length: number; [n: number]: T; } export const something = 10; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:41.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 3 [00:00:42.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 4 [00:00:43.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -74,12 +68,6 @@ Info 7 [00:00:50.000] FileName: /user/username/projects/myproject/a.ts Proje Info 7 [00:00:51.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 7 [00:00:52.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js index 0d996396a0ead..d020df826ba26 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js @@ -42,12 +42,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 3 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 4 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -71,12 +65,6 @@ Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts Proje Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 7 [00:00:44.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js index 167006e141a4d..7cfe39cca4abe 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js @@ -42,12 +42,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 3 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 4 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -71,12 +65,6 @@ Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts Proje Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 7 [00:00:44.000] response: { "responseRequired": false @@ -94,20 +82,8 @@ Info 8 [00:00:45.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 9 [00:00:46.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js b/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js index b384ba7c384fc..f79f3bbf24bfe 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js @@ -29,12 +29,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 3 [00:00:24.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 4 [00:00:25.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -58,12 +52,6 @@ Info 7 [00:00:32.000] FileName: /user/username/projects/myproject/a.ts Proje Info 7 [00:00:33.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 7 [00:00:34.000] response: { "responseRequired": false @@ -79,20 +67,8 @@ Info 8 [00:00:35.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 9 [00:00:36.000] response: { "response": [ @@ -144,38 +120,14 @@ Info 10 [00:00:37.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 11 [00:00:38.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:39.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/a.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":18},"text":"')' expected.","code":1005,"category":"error","relatedInformation":[{"span":{"start":{"line":1,"offset":4},"end":{"line":1,"offset":5},"file":"/user/username/projects/myproject/a.ts"},"message":"The parser expected to find a ')' to match the '(' token here.","category":"error","code":1007}]}]}} Info 13 [00:00:40.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} After checking timeout queue length (1) and running - -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js b/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js index 37bf45e83327d..93f2c610fe135 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js @@ -42,12 +42,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 3 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info 4 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) @@ -71,12 +65,6 @@ Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts Proje Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 7 [00:00:44.000] response: { "responseRequired": false @@ -92,11 +80,5 @@ Info 8 [00:00:45.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 9 [00:00:46.000] Request: semanticDiagnosticsSync not allowed in LanguageServiceMode.PartialSemantic Info 10 [00:00:47.000] LanguageService Operation: getSemanticDiagnostics not allowed in LanguageServiceMode.PartialSemantic \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js b/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js index 27ced28860c73..d5f5805013307 100644 --- a/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js +++ b/tests/baselines/reference/tsserver/plugins/getSupportedCodeFixes-can-be-proxied.js @@ -35,12 +35,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:19.000] Search path: / Info 3 [00:00:20.000] For info: /a.ts :: Config file name: /tsconfig.json Info 4 [00:00:21.000] Creating configuration project /tsconfig.json @@ -98,20 +92,18 @@ Info 20 [00:00:41.000] FileName: /a.ts ProjectRootPath: undefined Info 20 [00:00:42.000] Projects: /tsconfig.json After request -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -/b.ts: +/b.ts: *new* {} -/c.ts: +/c.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 20 [00:00:43.000] response: @@ -129,22 +121,6 @@ Info 21 [00:00:44.000] request: } Before request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/b.ts: - {} -/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 22 [00:00:45.000] FileWatcher:: Close:: WatchInfo: /b.ts 500 undefined WatchType: Closed Script info Info 23 [00:00:46.000] Search path: / Info 24 [00:00:47.000] For info: /b.ts :: Config file name: /tsconfig.json @@ -159,8 +135,6 @@ Info 25 [00:00:54.000] FileName: /b.ts ProjectRootPath: undefined Info 25 [00:00:55.000] Projects: /tsconfig.json After request -PolledWatches:: - FsWatches:: /tsconfig.json: {} @@ -169,6 +143,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/b.ts: + {} + FsWatchesRecursive:: /: {} @@ -188,20 +166,6 @@ Info 26 [00:00:57.000] request: } Before request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/c.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 27 [00:00:58.000] FileWatcher:: Close:: WatchInfo: /c.ts 500 undefined WatchType: Closed Script info Info 28 [00:00:59.000] Search path: / Info 29 [00:01:00.000] For info: /c.ts :: Config file name: /tsconfig.json @@ -218,14 +182,16 @@ Info 30 [00:01:09.000] FileName: /c.ts ProjectRootPath: undefined Info 30 [00:01:10.000] Projects: /tsconfig.json After request -PolledWatches:: - FsWatches:: /tsconfig.json: {} /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/c.ts: + {} + FsWatchesRecursive:: /: {} @@ -242,32 +208,8 @@ Info 31 [00:01:12.000] request: } Before request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - After request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 32 [00:01:13.000] response: { "response": [ @@ -1502,32 +1444,8 @@ Info 33 [00:01:14.000] request: } Before request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - After request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 34 [00:01:15.000] response: { "response": [ @@ -1546,32 +1464,8 @@ Info 35 [00:01:16.000] request: } Before request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - After request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 36 [00:01:17.000] response: { "response": [ @@ -1590,32 +1484,8 @@ Info 37 [00:01:18.000] request: } Before request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - After request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 38 [00:01:19.000] response: { "response": [ @@ -1634,32 +1504,8 @@ Info 39 [00:01:20.000] request: } Before request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - After request -PolledWatches:: - -FsWatches:: -/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/: - {} - Info 40 [00:01:21.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js b/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js index 1614c8ef4057f..ef4a276824e55 100644 --- a/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js +++ b/tests/baselines/reference/tsserver/plugins/gets-external-files-with-config-file-reload.js @@ -29,12 +29,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:23.000] Search path: /user/username/projects/myproject Info 3 [00:00:24.000] For info: /user/username/projects/myproject/a.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:25.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -87,19 +81,19 @@ Info 21 [00:00:47.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/somefile.txt: +/user/username/projects/myproject/somefile.txt: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 21 [00:00:48.000] response: @@ -116,22 +110,6 @@ Before running timeout callbacks {"compilerOptions":{"plugins":[{"name":"some-other-plugin"}]}} -PolledWatches:: -/user/username/projects/myproject/somefile.txt: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 26 [00:00:56.000] Running: /user/username/projects/myproject/tsconfig.json Info 27 [00:00:57.000] Reloading configured project /user/username/projects/myproject/tsconfig.json Info 28 [00:00:58.000] Config: /user/username/projects/myproject/tsconfig.json : { @@ -179,7 +157,11 @@ After running timeout callbacks PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/someotherfile.txt: +/user/username/projects/myproject/someotherfile.txt: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/user/username/projects/myproject/somefile.txt: {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js index f3430be666530..18cf24a93bcc4 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js @@ -31,12 +31,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json @@ -86,17 +80,17 @@ Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:42.000] response: @@ -116,20 +110,6 @@ Before running timeout callbacks } -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 26 [00:00:50.000] Running: /a/b/tsconfig.json Info 27 [00:00:51.000] Reloading configured project /a/b/tsconfig.json Info 28 [00:00:52.000] event: @@ -171,20 +151,6 @@ Info 39 [00:01:15.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/app.ts"]}} After running timeout callbacks -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 40 [00:01:19.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Info 41 [00:01:20.000] Scheduled: /a/b/tsconfig.json Info 42 [00:01:21.000] Scheduled: *ensureProjectForOpenFiles* @@ -196,20 +162,6 @@ Before running timeout callbacks } -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} - Info 44 [00:01:23.000] Reloading configured project /a/b/tsconfig.json Info 45 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Change in config file detected"}} @@ -252,17 +204,3 @@ Info 57 [00:01:48.000] got projects updated in background, updating diagnostic Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/app.ts"]}} After running timeout callbacks - -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js index 68111bb2993d7..f528e9050481f 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js @@ -31,12 +31,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json @@ -86,17 +80,17 @@ Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:42.000] response: diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js index a2127bdf57cb5..b0e4b7a32c9c1 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json @@ -89,17 +83,17 @@ Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 21 [00:00:42.000] response: diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js index 0483e418c0a4b..38b3da7112ab4 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js @@ -35,12 +35,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/test.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json @@ -109,19 +103,17 @@ Info 27 [00:00:50.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 27 [00:00:51.000] response: { "responseRequired": false @@ -137,20 +129,6 @@ Info 28 [00:00:52.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/app.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 29 [00:00:53.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info Info 30 [00:00:54.000] Search path: /a/b Info 31 [00:00:55.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json @@ -179,7 +157,9 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/app.ts: + {} Info 32 [00:01:07.000] response: { @@ -196,18 +176,6 @@ Info 33 [00:01:08.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 34 [00:01:09.000] Search path: /a/b Info 35 [00:01:10.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json Info 36 [00:01:11.000] event: @@ -249,18 +217,6 @@ Info 44 [00:01:33.000] FileName: /a/b/test2.ts ProjectRootPath: undefined Info 44 [00:01:34.000] Projects: /dev/null/inferredProject2* After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 44 [00:01:35.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js index 7eee643c0e77f..d822104d5e89b 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js @@ -37,12 +37,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/b Info 3 [00:00:22.000] For info: /a/b/test.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/b/tsconfig.json @@ -111,19 +105,17 @@ Info 27 [00:00:54.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/b/app.ts: +/a/b/app.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 27 [00:00:55.000] response: { "responseRequired": false @@ -139,20 +131,6 @@ Info 28 [00:00:56.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/b/app.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 29 [00:00:57.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info Info 30 [00:00:58.000] Search path: /a/b Info 31 [00:00:59.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json @@ -181,7 +159,9 @@ FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/app.ts: + {} Info 32 [00:01:11.000] response: { @@ -198,18 +178,6 @@ Info 33 [00:01:12.000] request: } Before request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 34 [00:01:13.000] Search path: /a/b Info 35 [00:01:14.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json Info 36 [00:01:15.000] event: @@ -251,18 +219,6 @@ Info 44 [00:01:37.000] FileName: /a/b/test2.ts ProjectRootPath: undefined Info 44 [00:01:38.000] Projects: /dev/null/inferredProject2* After request -PolledWatches:: -/a/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 44 [00:01:39.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js index 9230ef6fbc6c9..14e67dcc321e6 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json @@ -87,17 +81,17 @@ Info 20 [00:00:40.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b: +/a/b: *new* {} Info 20 [00:00:41.000] response: diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js index 53c472f5c1d59..6b3c2cea71c5c 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js @@ -32,12 +32,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] Search path: /a/b Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json @@ -100,19 +94,17 @@ Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: -/a/b/no-such-tsconfig.json: +/a/b/no-such-tsconfig.json: *new* {"pollingInterval":2000} -/a/b/node_modules/@types: +/a/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/tsconfig.json: +/a/b/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 21 [00:00:42.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js b/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js index 5d7f927797191..457799e31a01b 100644 --- a/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js +++ b/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js @@ -43,12 +43,6 @@ declare module '@custom/plugin' { } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /users/username/projects/myproject/src Info 3 [00:00:36.000] For info: /users/username/projects/myproject/src/a.ts :: Config file name: /users/username/projects/myproject/tsconfig.json Info 4 [00:00:37.000] Creating configuration project /users/username/projects/myproject/tsconfig.json @@ -108,19 +102,19 @@ Info 25 [00:01:03.000] Projects: /users/username/projects/myproject/tsconfig After request PolledWatches:: -/users/username/projects/myproject/node_modules/@types: +/users/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/users/username/projects/myproject/tsconfig.json: +/users/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/users/username/projects/myproject/src: +/users/username/projects/myproject/src: *new* {} -/users/username/projects/myproject/node_modules: +/users/username/projects/myproject/node_modules: *new* {} Info 25 [00:01:04.000] response: @@ -129,22 +123,6 @@ Info 25 [00:01:04.000] response: } Checking timeout queue length: 0 -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 26 [00:01:05.000] request: { "command": "geterr", @@ -159,160 +137,32 @@ Info 26 [00:01:05.000] request: } Before request -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 27 [00:01:06.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 28 [00:01:07.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 29 [00:01:08.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 30 [00:01:09.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[{"start":{"line":1,"offset":1},"end":{"line":1,"offset":44},"text":"'myModule' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2,"offset":10},"end":{"line":2,"offset":13},"text":"'foo' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}} Info 31 [00:01:10.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 32 [00:01:11.000] request: { "command": "change", @@ -329,62 +179,14 @@ Info 32 [00:01:11.000] request: } Before request -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 33 [00:01:12.000] response: { "responseRequired": false } Checking timeout queue length: 0 -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 34 [00:01:13.000] request: { "command": "geterr", @@ -399,62 +201,14 @@ Info 34 [00:01:13.000] request: } Before request -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 35 [00:01:14.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 36 [00:01:15.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Info 37 [00:01:16.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:17.000] Different program with same set of files @@ -462,96 +216,16 @@ Info 39 [00:01:18.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 40 [00:01:19.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} - Info 41 [00:01:20.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[{"start":{"line":1,"offset":1},"end":{"line":1,"offset":44},"text":"'myModule' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2,"offset":10},"end":{"line":2,"offset":13},"text":"'foo' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}} Info 42 [00:01:21.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/users/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/users/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/users/username/projects/myproject/src: - {} -/users/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/diagnostics-after-noUnusedLabels-changes.js b/tests/baselines/reference/tsserver/projectErrors/diagnostics-after-noUnusedLabels-changes.js index b7b219604a7fd..6fd40b0bd24be 100644 --- a/tests/baselines/reference/tsserver/projectErrors/diagnostics-after-noUnusedLabels-changes.js +++ b/tests/baselines/reference/tsserver/projectErrors/diagnostics-after-noUnusedLabels-changes.js @@ -16,12 +16,6 @@ label: while (1) {} { "compilerOptions": { "allowUnusedLabels": true } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:09.000] Search path: / Info 3 [00:00:10.000] For info: /a.ts :: Config file name: /tsconfig.json Info 4 [00:00:11.000] Creating configuration project /tsconfig.json @@ -59,15 +53,15 @@ Info 15 [00:00:27.000] Projects: /tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 15 [00:00:28.000] response: @@ -83,18 +77,6 @@ Before running timeout callbacks { "compilerOptions": { "allowUnusedLabels": false } } -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 20 [00:00:35.000] Running: /tsconfig.json Info 21 [00:00:36.000] Reloading configured project /tsconfig.json Info 22 [00:00:37.000] Config: /tsconfig.json : { @@ -128,18 +110,6 @@ Info 29 [00:00:54.000] FileName: /a.ts ProjectRootPath: undefined Info 29 [00:00:55.000] Projects: /tsconfig.json After running timeout callbacks -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 29 [00:00:56.000] request: { "command": "semanticDiagnosticsSync", @@ -151,32 +121,8 @@ Info 29 [00:00:56.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} - -FsWatches:: -/tsconfig.json: - {} - -FsWatchesRecursive:: -/: - {} - Info 30 [00:00:57.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js b/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js index 2fe5f2e4ade17..9a2d65a2badb4 100644 --- a/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js @@ -19,12 +19,6 @@ declare namespace foo { interface Foo { get2(): number; getFoo(): string; } } {"compilerOptions":{"module":"none","targer":"es5"},"exclude":["node_modules"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:23.000] Search path: /a/b/projects/myproject/bar Info 3 [00:00:24.000] For info: /a/b/projects/myproject/bar/app.ts :: Config file name: /a/b/projects/myproject/tsconfig.json Info 4 [00:00:25.000] Creating configuration project /a/b/projects/myproject/tsconfig.json @@ -77,19 +71,19 @@ Info 22 [00:00:48.000] Projects: /a/b/projects/myproject/tsconfig.json After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: +/a/b/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/projects/myproject/tsconfig.json: +/a/b/projects/myproject/tsconfig.json: *new* {} -/a/b/projects/myproject/foo/foo.ts: +/a/b/projects/myproject/foo/foo.ts: *new* {} FsWatchesRecursive:: -/a/b/projects/myproject: +/a/b/projects/myproject: *new* {} Info 22 [00:00:49.000] response: @@ -110,160 +104,32 @@ Info 23 [00:00:50.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 24 [00:00:51.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 25 [00:00:52.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 26 [00:00:53.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 27 [00:00:54.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} Info 28 [00:00:55.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 29 [00:00:57.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory Info 30 [00:00:58.000] Scheduled: /a/b/projects/myproject/tsconfig.json Info 31 [00:00:59.000] Scheduled: *ensureProjectForOpenFiles* @@ -301,6 +167,10 @@ FsWatches:: /a/b/projects/myproject/tsconfig.json: {} +FsWatches *deleted*:: +/a/b/projects/myproject/foo/foo.ts: + {} + FsWatchesRecursive:: /a/b/projects/myproject: {} @@ -352,7 +222,7 @@ PolledWatches:: FsWatches:: /a/b/projects/myproject/tsconfig.json: {} -/a/b/projects/myproject/foo2/foo.ts: +/a/b/projects/myproject/foo2/foo.ts: *new* {} FsWatchesRecursive:: @@ -361,42 +231,10 @@ FsWatchesRecursive:: Before running timeout callbacks -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 62 [00:01:44.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} After running timeout callbacks -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 63 [00:01:45.000] request: { "command": "geterr", @@ -411,156 +249,28 @@ Info 63 [00:01:45.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 64 [00:01:46.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 65 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 66 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} - Info 67 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} Info 68 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/a/b/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/myproject/tsconfig.json: - {} -/a/b/projects/myproject/foo2/foo.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/myproject: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js b/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js index 88003bce60fe2..805657e9af1c9 100644 --- a/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js +++ b/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js @@ -29,38 +29,14 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:17.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 3 [00:00:18.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} After checking timeout queue length (1) and running - -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js index f8a9fba945569..c6bb644ec2880 100644 --- a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js +++ b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js @@ -30,12 +30,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -89,21 +83,21 @@ Info 25 [00:00:53.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 25 [00:00:54.000] response: @@ -124,176 +118,32 @@ Info 26 [00:00:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 27 [00:00:56.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 31 [00:01:00.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 32 [00:01:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 33 [00:01:04.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation Info 34 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations @@ -332,6 +182,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -343,7 +197,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/src: {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 64 [00:01:43.000] request: @@ -360,88 +214,16 @@ Info 64 [00:01:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 65 [00:01:44.000] response: { "responseRequired": false } Checking timeout queue length: 4 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running timeout callback9 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 66 [00:01:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info 67 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 68 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms @@ -450,110 +232,20 @@ Info 70 [00:01:49.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After running timeout callback9 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} +Before running immediate callbacks and checking length (1) -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} +Info 71 [00:01:50.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} +Before running immediate callbacks and checking length (1) -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} +Before running immediate callbacks and checking length (1) +Info 72 [00:01:51.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} +Info 73 [00:01:52.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Info 71 [00:01:50.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Info 72 [00:01:51.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 73 [00:01:52.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 74 [00:01:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 75 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 76 [00:01:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -597,24 +289,6 @@ export const x = 10; export const y = 10; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 109 [00:02:42.000] request: { "command": "geterr", @@ -629,219 +303,39 @@ Info 109 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 110 [00:02:43.000] response: { "responseRequired": false } Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running timeout callback11 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 111 [00:02:44.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After running timeout callback11 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 112 [00:02:45.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 113 [00:02:46.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 114 [00:02:47.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Checking timeout queue length: 2 //// [/user/username/projects/myproject/node_modules/@angular/core/index.d.ts] export const y = 10; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 115 [00:02:54.000] request: { "command": "geterr", @@ -856,171 +350,27 @@ Info 115 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 116 [00:02:55.000] response: { "responseRequired": false } Checking timeout queue length: 3 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running timeout callback12 -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 117 [00:02:56.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -After running timeout callback12 - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Info 118 [00:02:57.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} +After running timeout callback12 Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} +Info 118 [00:02:57.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} +Before running immediate callbacks and checking length (1) -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} +Before running immediate callbacks and checking length (1) Info 119 [00:02:58.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} @@ -1028,24 +378,6 @@ Info 120 [00:02:59.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 121 [00:03:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 122 [00:03:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 123 [00:03:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -1107,67 +439,13 @@ Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] deleted //// [/user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts] deleted -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 178 [00:04:08.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation Info 179 [00:04:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info 180 [00:04:10.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before checking timeout queue length (2) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 181 [00:04:11.000] Running: /user/username/projects/myproject/tsconfig.json Info 182 [00:04:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 183 [00:04:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache @@ -1210,24 +488,6 @@ Info 193 [00:04:35.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/main.ts"]}} After checking timeout queue length (2) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 194 [00:04:36.000] request: { "command": "geterr", @@ -1242,172 +502,28 @@ Info 194 [00:04:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 195 [00:04:37.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 196 [00:04:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 197 [00:04:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 198 [00:04:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 199 [00:04:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js index 09e7988c3798f..9c9b6aebe357f 100644 --- a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js +++ b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js @@ -30,12 +30,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:25.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -89,21 +83,21 @@ Info 25 [00:00:53.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 25 [00:00:54.000] response: @@ -124,176 +118,32 @@ Info 26 [00:00:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 27 [00:00:56.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 31 [00:01:00.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} - Info 32 [00:01:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 33 [00:01:04.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation Info 34 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations @@ -332,6 +182,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/tsconfig.json: {} @@ -343,7 +197,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/src: {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 64 [00:01:43.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation @@ -351,44 +205,8 @@ Info 65 [00:01:44.000] Scheduled: /user/username/projects/myproject/tsconfig.j Info 66 [00:01:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before checking timeout queue length (2) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 67 [00:01:46.000] Running: /user/username/projects/myproject/tsconfig.json Info 68 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 69 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms @@ -415,24 +233,6 @@ Info 75 [00:02:06.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/main.ts"]}} After checking timeout queue length (2) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 76 [00:02:07.000] request: { "command": "geterr", @@ -447,176 +247,32 @@ Info 76 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 77 [00:02:08.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Info 78 [00:02:09.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} +Info 78 [00:02:09.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} +After checking timeout queue length (1) and running Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 79 [00:02:10.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 80 [00:02:11.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 81 [00:02:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 82 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 83 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 84 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -660,44 +316,8 @@ export const x = 10; export const y = 10; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 117 [00:03:02.000] request: { "command": "geterr", @@ -712,219 +332,39 @@ Info 117 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 118 [00:03:03.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 119 [00:03:04.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 120 [00:03:05.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 121 [00:03:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 122 [00:03:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/node_modules/@angular/core/index.d.ts] export const y = 10; -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 123 [00:03:14.000] request: { "command": "geterr", @@ -939,151 +379,25 @@ Info 123 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 124 [00:03:15.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 125 [00:03:16.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - -Info 126 [00:03:17.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} +After checking timeout queue length (1) and running Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} +Info 126 [00:03:17.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} +Before running immediate callbacks and checking length (1) -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} +Before running immediate callbacks and checking length (1) Info 127 [00:03:18.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} @@ -1091,24 +405,6 @@ Info 128 [00:03:19.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 129 [00:03:21.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 130 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info 131 [00:03:23.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory @@ -1170,67 +466,13 @@ Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] deleted //// [/user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts] deleted -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 186 [00:04:28.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation Info 187 [00:04:29.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info 188 [00:04:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before checking timeout queue length (2) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 189 [00:04:31.000] Running: /user/username/projects/myproject/tsconfig.json Info 190 [00:04:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info 191 [00:04:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache @@ -1273,24 +515,6 @@ Info 201 [00:04:55.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/main.ts"]}} After checking timeout queue length (2) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 202 [00:04:56.000] request: { "command": "geterr", @@ -1305,172 +529,28 @@ Info 202 [00:04:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 203 [00:04:57.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 204 [00:04:58.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 205 [00:04:59.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 206 [00:05:00.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 207 [00:05:01.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js b/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js index 70ce70264f518..13bfaca029d97 100644 --- a/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js +++ b/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js @@ -33,12 +33,6 @@ function getHostName() { return "hello"; } export { getHostName }; import { getHostName } from '../../src/server/utilities';export default getHostName; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/src/client Info 3 [00:00:36.000] For info: /user/username/projects/myproject/src/client/app.js :: No config files found. Info 4 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -74,31 +68,31 @@ Info 18 [00:00:56.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: +/user/username/projects/myproject/src/client/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: +/user/username/projects/myproject/src/client/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: +/user/username/projects/myproject/src/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: +/user/username/projects/myproject/src/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/bower_components: +/user/username/projects/myproject/bower_components: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 18 [00:00:57.000] response: @@ -117,34 +111,6 @@ Info 19 [00:00:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 20 [00:00:59.000] Search path: /user/username/projects/myproject/test/backend Info 21 [00:01:00.000] For info: /user/username/projects/myproject/test/backend/index.js :: No config files found. Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -204,25 +170,25 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: +/user/username/projects/myproject/test/backend/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: +/user/username/projects/myproject/test/backend/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: +/user/username/projects/myproject/test/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: +/user/username/projects/myproject/test/jsconfig.json: *new* {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: {} -/user/username/projects/myproject/src/server/utilities.js: +/user/username/projects/myproject/src/server/utilities.js: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/src: {} -/user/username/projects/myproject/test: +/user/username/projects/myproject/test: *new* {} Info 34 [00:01:21.000] response: @@ -244,46 +210,73 @@ Info 35 [00:01:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} +After request -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} +Info 36 [00:01:23.000] response: + { + "responseRequired": false + } +Before checking timeout queue length (1) and running -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} +Info 37 [00:01:24.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} +After checking timeout queue length (1) and running + +Before running immediate callbacks and checking length (1) + +Info 38 [00:01:25.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} +Before running immediate callbacks and checking length (1) + +Before running immediate callbacks and checking length (1) + +Info 39 [00:01:26.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} +Before running immediate callbacks and checking length (1) + +Before checking timeout queue length (1) and running + +Info 40 [00:01:27.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} +After checking timeout queue length (1) and running + +Before running immediate callbacks and checking length (1) + +Info 41 [00:01:28.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} +Before running immediate callbacks and checking length (1) + +Before running immediate callbacks and checking length (1) + +Info 42 [00:01:29.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} +Info 43 [00:01:30.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} +Before running immediate callbacks and checking length (1) + +Info 44 [00:01:31.000] request: + { + "command": "close", + "arguments": { + "file": "/user/username/projects/myproject/test/backend/index.js" + }, + "seq": 4, + "type": "request" + } +Before request + +Info 45 [00:01:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 46 [00:01:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 47 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 48 [00:01:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 49 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info +Info 50 [00:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:01:38.000] Files (4) +Info 50 [00:01:39.000] ----------------------------------------------- +Info 50 [00:01:40.000] Open files: +Info 50 [00:01:41.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 50 [00:01:42.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -305,6 +298,8 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules: {"pollingInterval":500} + +PolledWatches *deleted*:: /user/username/projects/myproject/test/backend/tsconfig.json: {"pollingInterval":2000} /user/username/projects/myproject/test/backend/jsconfig.json: @@ -319,6 +314,8 @@ FsWatches:: {} /user/username/projects/myproject/src/server/utilities.js: {} +/user/username/projects/myproject/test/backend/index.js: *new* + {} FsWatchesRecursive:: /user/username/projects/myproject/src: @@ -326,11 +323,71 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 36 [00:01:23.000] response: +Info 50 [00:01:43.000] response: { "responseRequired": false } -Before checking timeout queue length (1) and running +Info 51 [00:01:44.000] request: + { + "command": "open", + "arguments": { + "file": "/user/username/projects/myproject/src/server/utilities.js", + "projectRootPath": "/user/username/projects/myproject" + }, + "seq": 5, + "type": "request" + } +Before request + +Info 52 [00:01:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info +Info 53 [00:01:46.000] Search path: /user/username/projects/myproject/src/server +Info 54 [00:01:47.000] For info: /user/username/projects/myproject/src/server/utilities.js :: No config files found. +Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 56 [00:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 57 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 58 [00:01:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:01:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 60 [00:01:53.000] Files (2) + /a/lib/lib.d.ts + /user/username/projects/myproject/src/client/app.js + + + ../../../../a/lib/lib.d.ts + Default library for target 'es5' + src/client/app.js + Root file specified for compilation + +Info 61 [00:01:54.000] ----------------------------------------------- +Info 62 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 63 [00:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 64 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 65 [00:01:58.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 66 [00:01:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 67 [00:02:00.000] Files (3) + /a/lib/lib.d.ts + /user/username/projects/myproject/src/client/app.js + /user/username/projects/myproject/src/server/utilities.js + + + ../../../../a/lib/lib.d.ts + Default library for target 'es5' + src/client/app.js + Root file specified for compilation + src/server/utilities.js + Root file specified for compilation + +Info 68 [00:02:01.000] ----------------------------------------------- +Info 69 [00:02:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info +Info 70 [00:02:03.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 70 [00:02:04.000] Files (3) + +Info 70 [00:02:05.000] ----------------------------------------------- +Info 70 [00:02:06.000] Open files: +Info 70 [00:02:07.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 70 [00:02:08.000] Projects: /dev/null/inferredProject1* +Info 70 [00:02:09.000] FileName: /user/username/projects/myproject/src/server/utilities.js ProjectRootPath: /user/username/projects/myproject +Info 70 [00:02:10.000] Projects: /dev/null/inferredProject1* +After request PolledWatches:: /user/username/projects/myproject/src/client/tsconfig.json: @@ -351,1241 +408,88 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules: {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: +/user/username/projects/myproject/src/server/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: +/user/username/projects/myproject/src/server/jsconfig.json: *new* {"pollingInterval":2000} FsWatches:: /a/lib/lib.d.ts: {} + +FsWatches *deleted*:: /user/username/projects/myproject/src/server/utilities.js: {} +/user/username/projects/myproject/test/backend/index.js: + {} FsWatchesRecursive:: /user/username/projects/myproject/src: {} + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject/test: {} -Info 37 [00:01:24.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 38 [00:01:25.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 39 [00:01:26.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Before checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 40 [00:01:27.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 41 [00:01:28.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 42 [00:01:29.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} -Info 43 [00:01:30.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 44 [00:01:31.000] request: - { - "command": "close", - "arguments": { - "file": "/user/username/projects/myproject/test/backend/index.js" - }, - "seq": 4, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/test/backend/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/backend/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/test/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 45 [00:01:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 46 [00:01:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 47 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 48 [00:01:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 49 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info -Info 50 [00:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [00:01:38.000] Files (4) - -Info 50 [00:01:39.000] ----------------------------------------------- -Info 50 [00:01:40.000] Open files: -Info 50 [00:01:41.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 50 [00:01:42.000] Projects: /dev/null/inferredProject1* -After request - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} -/user/username/projects/myproject/test/backend/index.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 50 [00:01:43.000] response: - { - "responseRequired": false - } -Info 51 [00:01:44.000] request: - { - "command": "open", - "arguments": { - "file": "/user/username/projects/myproject/src/server/utilities.js", - "projectRootPath": "/user/username/projects/myproject" - }, - "seq": 5, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/src/server/utilities.js: - {} -/user/username/projects/myproject/test/backend/index.js: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/test: - {} - -Info 52 [00:01:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info -Info 53 [00:01:46.000] Search path: /user/username/projects/myproject/src/server -Info 54 [00:01:47.000] For info: /user/username/projects/myproject/src/server/utilities.js :: No config files found. -Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 56 [00:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 57 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 58 [00:01:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [00:01:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 60 [00:01:53.000] Files (2) - /a/lib/lib.d.ts - /user/username/projects/myproject/src/client/app.js - - - ../../../../a/lib/lib.d.ts - Default library for target 'es5' - src/client/app.js - Root file specified for compilation - -Info 61 [00:01:54.000] ----------------------------------------------- -Info 62 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 63 [00:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 64 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 65 [00:01:58.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 66 [00:01:59.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 67 [00:02:00.000] Files (3) - /a/lib/lib.d.ts - /user/username/projects/myproject/src/client/app.js - /user/username/projects/myproject/src/server/utilities.js - - - ../../../../a/lib/lib.d.ts - Default library for target 'es5' - src/client/app.js - Root file specified for compilation - src/server/utilities.js - Root file specified for compilation - -Info 68 [00:02:01.000] ----------------------------------------------- -Info 69 [00:02:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info -Info 70 [00:02:03.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 70 [00:02:04.000] Files (3) - -Info 70 [00:02:05.000] ----------------------------------------------- -Info 70 [00:02:06.000] Open files: -Info 70 [00:02:07.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 70 [00:02:08.000] Projects: /dev/null/inferredProject1* -Info 70 [00:02:09.000] FileName: /user/username/projects/myproject/src/server/utilities.js ProjectRootPath: /user/username/projects/myproject -Info 70 [00:02:10.000] Projects: /dev/null/inferredProject1* -After request - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 70 [00:02:11.000] response: - { - "responseRequired": false - } -Info 71 [00:02:12.000] request: - { - "command": "geterr", - "arguments": { - "delay": 0, - "files": [ - "/user/username/projects/myproject/src/server/utilities.js", - "/user/username/projects/myproject/src/client/app.js" - ] - }, - "seq": 6, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} +Info 70 [00:02:11.000] response: + { + "responseRequired": false + } +Info 71 [00:02:12.000] request: + { + "command": "geterr", + "arguments": { + "delay": 0, + "files": [ + "/user/username/projects/myproject/src/server/utilities.js", + "/user/username/projects/myproject/src/client/app.js" + ] + }, + "seq": 6, + "type": "request" + } +Before request After request -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 72 [00:02:13.000] response: - { - "responseRequired": false - } -Before checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 73 [00:02:14.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - -Info 74 [00:02:15.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} +Info 72 [00:02:13.000] response: + { + "responseRequired": false + } +Before checking timeout queue length (1) and running -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} +Info 73 [00:02:14.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} +After checking timeout queue length (1) and running Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} +Info 74 [00:02:15.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} +Before running immediate callbacks and checking length (1) -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} +Before running immediate callbacks and checking length (1) Info 75 [00:02:16.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 76 [00:02:17.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 77 [00:02:18.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 78 [00:02:19.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} Info 79 [00:02:20.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/src/client/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/client/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/bower_components: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/src/server/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/myproject/src/server/jsconfig.json: - {"pollingInterval":2000} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js b/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js index da1570a630b83..7ed235bebf875 100644 --- a/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js +++ b/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"resolveJsonModule":true,"composite":true},"include":["./src/*.ts","./src/*.json"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:27.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:28.000] For info: /user/username/projects/myproject/src/test.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -101,21 +95,21 @@ Info 26 [00:00:56.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject/src/blabla.json: +/user/username/projects/myproject/src/blabla.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 26 [00:00:57.000] response: @@ -136,172 +130,28 @@ Info 27 [00:00:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 28 [00:00:59.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 29 [00:01:00.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 30 [00:01:01.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 31 [00:01:02.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} Info 32 [00:01:03.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js b/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js index d874560b4227d..134402b0be3ea 100644 --- a/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js +++ b/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js @@ -34,12 +34,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"resolveJsonModule":true,"composite":true},"include":["./src/*.ts"]} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:27.000] Search path: /user/username/projects/myproject/src Info 3 [00:00:28.000] For info: /user/username/projects/myproject/src/test.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -99,21 +93,21 @@ Info 26 [00:00:56.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} -/user/username/projects/myproject/src/blabla.json: +/user/username/projects/myproject/src/blabla.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 26 [00:00:57.000] response: @@ -134,172 +128,28 @@ Info 27 [00:00:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 28 [00:00:59.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 29 [00:01:00.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 30 [00:01:01.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[{"start":{"line":1,"offset":25},"end":{"line":1,"offset":40},"text":"File '/user/username/projects/myproject/src/blabla.json' is not listed within the file list of project '/user/username/projects/myproject/tsconfig.json'. Projects must list all files or use an 'include' pattern.","code":6307,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 31 [00:01:02.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} Info 32 [00:01:03.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/src: - {} -/user/username/projects/myproject/src/blabla.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js index a9bb6da61d0d9..b6ebc5290f9fb 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js @@ -32,12 +32,6 @@ class c { } class c { } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:27.000] Search path: Info 3 [00:00:28.000] For info: untitled:Untitled-1 :: No config files found. Info 4 [00:00:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -69,19 +63,17 @@ Info 14 [00:00:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/typings/@epic/core.d.ts: +/typings/@epic/core.d.ts: *new* {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: +/user/someuser/projects/somefolder/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/someuser/projects/somefolder/src/somefile.d.ts: +/user/someuser/projects/somefolder/src/somefile.d.ts: *new* {} -FsWatchesRecursive:: - Info 14 [00:00:45.000] response: { "responseRequired": false @@ -93,20 +85,6 @@ path: /a/lib/lib.d.ts fileName: /a/lib/lib.d.ts Checking timeout queue length: 0 -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 15 [00:00:46.000] request: { "command": "geterr", @@ -121,140 +99,28 @@ Info 15 [00:00:46.000] request: } Before request -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 16 [00:00:47.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 17 [00:00:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 18 [00:00:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"untitled:Untitled-1","diagnostics":[{"start":{"line":1,"offset":22},"end":{"line":1,"offset":63},"text":"File '../../../../../../typings/@epic/Core.d.ts' not found.","code":6053,"category":"error"},{"start":{"line":2,"offset":22},"end":{"line":2,"offset":41},"text":"File 'src/somefile.d.ts' not found.","code":6053,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 19 [00:00:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} Info 20 [00:00:51.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} -/user/someuser/projects/somefolder/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/user/someuser/projects/somefolder/src/somefile.d.ts: - {} - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js index fef71297b66bd..202ce5ccde22a 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js @@ -31,12 +31,6 @@ class c { } class c { } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:27.000] Search path: Info 3 [00:00:28.000] For info: untitled:Untitled-1 :: No config files found. Info 4 [00:00:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -66,17 +60,15 @@ Info 12 [00:00:42.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/typings/@epic/core.d.ts: +/typings/@epic/core.d.ts: *new* {"pollingInterval":500} FsWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/src/somefile.d.ts: +/src/somefile.d.ts: *new* {} -FsWatchesRecursive:: - Info 12 [00:00:43.000] response: { "responseRequired": false @@ -88,18 +80,6 @@ path: /a/lib/lib.d.ts fileName: /a/lib/lib.d.ts Checking timeout queue length: 0 -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 13 [00:00:44.000] request: { "command": "geterr", @@ -114,124 +94,28 @@ Info 13 [00:00:44.000] request: } Before request -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 14 [00:00:45.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 15 [00:00:46.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 16 [00:00:47.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"untitled:Untitled-1","diagnostics":[{"start":{"line":1,"offset":22},"end":{"line":1,"offset":63},"text":"File '../../../../../../typings/@epic/Core.d.ts' not found.","code":6053,"category":"error"},{"start":{"line":2,"offset":22},"end":{"line":2,"offset":41},"text":"File 'src/somefile.d.ts' not found.","code":6053,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Before running immediate callbacks and checking length (1) -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: - Info 17 [00:00:48.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} Info 18 [00:00:49.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/typings/@epic/core.d.ts: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} -/src/somefile.d.ts: - {} - -FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js index ee3cc9aa310ae..fe2be42d0092d 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js @@ -30,12 +30,6 @@ const x = async (_action: string) => { {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:24.000] Search path: /user/username/projects/myproject Info 3 [00:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -77,17 +71,17 @@ Info 17 [00:00:44.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 17 [00:00:45.000] response: @@ -106,36 +100,8 @@ Info 18 [00:00:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 19 [00:00:47.000] response: { "response": [], @@ -153,36 +119,8 @@ Info 20 [00:00:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 21 [00:00:49.000] response: { "response": [ @@ -214,36 +152,8 @@ Info 22 [00:00:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 23 [00:00:51.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js index 0800ca13e351d..d328e6323b638 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js @@ -30,12 +30,6 @@ const x = async (_action: string) => { {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:24.000] Search path: /user/username/projects/myproject Info 3 [00:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -85,17 +79,17 @@ Info 21 [00:00:48.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 21 [00:00:49.000] response: @@ -116,140 +110,28 @@ Info 22 [00:00:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 23 [00:00:51.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 24 [00:00:52.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 25 [00:00:53.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[{"start":{"line":1,"offset":11},"end":{"line":1,"offset":39},"text":"An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.","code":2697,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 26 [00:00:54.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} Info 27 [00:00:55.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js index c87278f4d9f0b..1f0a831e46ca1 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js @@ -30,12 +30,6 @@ const x = async (_action: string) => { {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:24.000] Search path: /user/username/projects/myproject Info 3 [00:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 4 [00:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json @@ -85,17 +79,17 @@ Info 21 [00:00:48.000] Projects: /user/username/projects/myproject/tsconfig. After request PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject: +/user/username/projects/myproject: *new* {} Info 21 [00:00:49.000] response: @@ -114,140 +108,28 @@ Info 22 [00:00:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 23 [00:00:51.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 24 [00:00:52.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 25 [00:00:53.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[{"start":{"line":1,"offset":11},"end":{"line":1,"offset":39},"text":"An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.","code":2697,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} - Info 26 [00:00:54.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} Info 27 [00:00:55.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject: - {} diff --git a/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js b/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js index 2e3352d0a4d41..9cd0e0e94888e 100644 --- a/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js +++ b/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js @@ -26,12 +26,6 @@ interface Array { length: number; [n: number]: T; } {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 1 [00:00:18.000] Search path: /a Info 2 [00:00:19.000] For info: /a/app.js :: Config file name: /a/jsconfig.json Info 3 [00:00:20.000] Creating configuration project /a/jsconfig.json diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js index 80d251ad8b558..7a9291adbea23 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js @@ -270,12 +270,6 @@ declare module Hmi { ====================================================================== -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:55.000] Search path: /user/username/projects/myproject/SiblingClass Info 3 [00:00:56.000] For info: /user/username/projects/myproject/SiblingClass/Source.ts :: Config file name: /user/username/projects/myproject/SiblingClass/tsconfig.json Info 4 [00:00:57.000] Creating configuration project /user/username/projects/myproject/SiblingClass/tsconfig.json @@ -345,25 +339,23 @@ Info 23 [00:01:21.000] Projects: /user/username/projects/myproject/SiblingCl After request PolledWatches:: -/user/username/projects/myproject/SiblingClass/node_modules/@types: +/user/username/projects/myproject/SiblingClass/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/SiblingClass/tsconfig.json: +/user/username/projects/myproject/SiblingClass/tsconfig.json: *new* {} -/user/username/projects/myproject/tsbase.json: +/user/username/projects/myproject/tsbase.json: *new* {} -/user/username/projects/myproject/buttonClass/tsconfig.json: +/user/username/projects/myproject/buttonClass/tsconfig.json: *new* {} -/user/username/projects/myproject/buttonClass/Source.ts: +/user/username/projects/myproject/buttonClass/Source.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 23 [00:01:22.000] response: { "responseRequired": false @@ -380,50 +372,10 @@ Info 24 [00:01:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/SiblingClass/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/SiblingClass/tsconfig.json: - {} -/user/username/projects/myproject/tsbase.json: - {} -/user/username/projects/myproject/buttonClass/tsconfig.json: - {} -/user/username/projects/myproject/buttonClass/Source.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - After request //// [/user/username/projects/myproject/SiblingClass/Source.js] file written with same contents //// [/user/username/projects/myproject/SiblingClass/Source.d.ts] file written with same contents -PolledWatches:: -/user/username/projects/myproject/SiblingClass/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/SiblingClass/tsconfig.json: - {} -/user/username/projects/myproject/tsbase.json: - {} -/user/username/projects/myproject/buttonClass/tsconfig.json: - {} -/user/username/projects/myproject/buttonClass/Source.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 25 [00:01:30.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js index 18ddf79a42955..1b365d61efdc7 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -496,30 +350,6 @@ Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:29.000] response: { "response": [ @@ -551,30 +381,6 @@ Info 60 [00:02:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 62 [00:02:34.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 63 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -615,6 +421,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -628,7 +438,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 73 [00:02:50.000] response: @@ -647,56 +457,8 @@ Info 74 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 75 [00:02:52.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js index c296ff3e47139..dfff539a57d04 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -493,30 +347,6 @@ Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:26.000] response: { "response": [ @@ -546,30 +376,6 @@ Info 57 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 59 [00:02:31.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 60 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -607,6 +413,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -620,7 +430,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 70 [00:02:47.000] response: @@ -639,56 +449,8 @@ Info 71 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 72 [00:02:49.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js index 5e0d61f008929..95755eeedf0c7 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -496,30 +350,6 @@ Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:29.000] response: { "response": [ @@ -549,30 +379,6 @@ Info 60 [00:02:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 62 [00:02:34.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 63 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -611,6 +417,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -624,7 +434,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 73 [00:02:50.000] response: @@ -643,56 +453,8 @@ Info 74 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 75 [00:02:52.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js index 9602619283645..573b3b49dc09e 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -493,30 +347,6 @@ Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:26.000] response: { "response": [ @@ -546,30 +376,6 @@ Info 57 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 59 [00:02:31.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 60 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -607,6 +413,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -620,7 +430,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 70 [00:02:47.000] response: @@ -639,56 +449,8 @@ Info 71 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 72 [00:02:49.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js index 1f8455628dd0a..da98fbe18b4e8 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -515,30 +345,6 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 57 [00:02:07.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 58 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -579,6 +385,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -592,7 +402,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 68 [00:02:23.000] response: @@ -612,56 +422,8 @@ Info 69 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 70 [00:02:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js index 3f90da46f0053..2ae2feeea736a 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,56 +315,8 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] response: { "response": [ @@ -512,30 +342,6 @@ Info 52 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 53 [00:02:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 54 [00:02:04.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 55 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -573,6 +379,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -586,7 +396,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 65 [00:02:20.000] response: @@ -606,56 +416,8 @@ Info 66 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 67 [00:02:22.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js index 192ae9c6144ef..6bca241664aa6 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -515,30 +345,6 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 57 [00:02:07.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 58 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -577,6 +383,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -590,7 +400,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 68 [00:02:23.000] response: @@ -610,56 +420,8 @@ Info 69 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 70 [00:02:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js index 00df458c89151..4be4d8f0945f2 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,56 +315,8 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] response: { "response": [ @@ -512,30 +342,6 @@ Info 52 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 53 [00:02:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 54 [00:02:04.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 55 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -573,6 +379,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -586,7 +396,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 65 [00:02:20.000] response: @@ -606,56 +416,8 @@ Info 66 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 67 [00:02:22.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js index 37e0f64169fee..2845908ebc302 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -258,56 +232,8 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] response: { "response": [ @@ -333,30 +259,6 @@ Info 46 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 48 [00:01:36.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 49 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -394,6 +296,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -407,7 +313,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 59 [00:01:52.000] response: @@ -427,56 +333,8 @@ Info 60 [00:01:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 61 [00:01:54.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js index a41d96f6f9890..30deb256f8614 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -515,56 +345,8 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:04.000] response: { "response": false, @@ -582,56 +364,8 @@ Info 57 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:06.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js index b310030bea300..4de26d4eb6f53 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -513,56 +343,8 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:04.000] response: { "response": false, @@ -580,56 +362,8 @@ Info 57 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:06.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js index e572a384d1f69..c64963d4cda24 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -513,56 +343,8 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:04.000] response: { "response": false, @@ -580,56 +362,8 @@ Info 57 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:06.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js index e8e5f76457266..c3b8937a533cb 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -513,56 +343,8 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:04.000] response: { "response": false, @@ -580,56 +362,8 @@ Info 57 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:06.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js index 437f660ac61b3..816c6c102ee68 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -258,56 +232,8 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] response: { "response": [ @@ -333,56 +259,8 @@ Info 46 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:33.000] response: { "response": false, @@ -400,56 +278,8 @@ Info 48 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:35.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js index b0bd0c555cb18..eb1433eead5fd 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -366,30 +292,6 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 50 [00:02:00.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js Info 51 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory @@ -427,6 +329,10 @@ PolledWatches:: /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/usage/tsconfig.json: {} @@ -440,7 +346,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 61 [00:02:16.000] response: @@ -459,56 +365,8 @@ Info 62 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 63 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js index 1c0bddfbdfa37..1e08241a853bd 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -496,30 +350,6 @@ Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:29.000] response: { "response": [ @@ -544,30 +374,6 @@ Info 60 [00:02:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 62 [00:02:34.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 63 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -581,30 +387,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 64 [00:02:36.000] response: { "response": true, @@ -621,56 +403,8 @@ Info 65 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 66 [00:02:38.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js index 246028514ae48..a6d915d7ecddb 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -493,30 +347,6 @@ Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:26.000] response: { "response": [ @@ -541,30 +371,6 @@ Info 57 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 59 [00:02:31.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 60 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -581,30 +387,6 @@ exports.fn3 = fn3; -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:33.000] response: { "response": true, @@ -621,56 +403,8 @@ Info 62 [00:02:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 63 [00:02:35.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js index 00e46ba4ae583..f08c31207935f 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -515,30 +345,6 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 57 [00:02:07.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 58 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -552,30 +358,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:09.000] response: { "response": true, @@ -593,56 +375,8 @@ Info 60 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:11.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js index b58afb5521f11..a3a5db40494f7 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -496,30 +350,6 @@ Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:29.000] response: { "response": [ @@ -544,30 +374,6 @@ Info 60 [00:02:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 62 [00:02:34.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 63 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -581,30 +387,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 64 [00:02:36.000] response: { "response": true, @@ -621,56 +403,8 @@ Info 65 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 66 [00:02:38.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js index 77edb7a1be9b7..59728dbfd35a3 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -515,30 +345,6 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 57 [00:02:07.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 58 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -553,30 +359,6 @@ function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:09.000] response: { "response": true, @@ -594,56 +376,8 @@ Info 60 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:11.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js index fc32e10f68a8e..3bf6cc237ad5d 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -436,30 +314,6 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files @@ -493,30 +347,6 @@ Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:26.000] response: { "response": [ @@ -541,30 +371,6 @@ Info 57 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:02:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 59 [00:02:31.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 60 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -579,30 +385,6 @@ function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:33.000] response: { "response": true, @@ -619,56 +401,8 @@ Info 62 [00:02:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 63 [00:02:35.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js index 431532900b7fd..0543446b9d9d6 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -515,30 +345,6 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 57 [00:02:07.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 58 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -552,30 +358,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:09.000] response: { "response": true, @@ -593,56 +375,8 @@ Info 60 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:11.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js index 56bbaefb22b02..909d6268fdff4 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -371,56 +297,8 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:57.000] response: { "responseRequired": false @@ -437,59 +315,11 @@ Info 50 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 52 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 53 [00:02:01.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:02.000] response: { "response": [ @@ -515,30 +345,6 @@ Info 55 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 57 [00:02:07.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 58 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -555,30 +361,6 @@ exports.fn3 = fn3; -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:02:09.000] response: { "response": true, @@ -596,56 +378,8 @@ Info 60 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:02:11.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js index 2b4d69a71a6f1..53580604e8fff 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -258,56 +232,8 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] response: { "response": [ @@ -333,30 +259,6 @@ Info 46 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 48 [00:01:36.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 49 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -370,30 +272,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 50 [00:01:38.000] response: { "response": true, @@ -411,56 +289,8 @@ Info 51 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 52 [00:01:40.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js index 2ac93a8075031..6ba99dbf90737 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -225,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,6 +206,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -257,30 +231,6 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: Info 46 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 46 [00:01:33.000] Files (3) @@ -311,30 +261,6 @@ Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:55.000] response: { "response": [ @@ -359,30 +285,6 @@ Info 48 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 50 [00:02:00.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 51 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -396,30 +298,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 52 [00:02:02.000] response: { "response": true, @@ -436,56 +314,8 @@ Info 53 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:02:04.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js index 4280767d59b5e..15ccbf3f6ca6e 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -254,30 +200,6 @@ export function fn2() { } export function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files @@ -299,30 +221,6 @@ Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usag Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:43.000] response: { "response": [ @@ -347,56 +245,8 @@ Info 42 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:45.000] response: { "response": false, @@ -413,56 +263,8 @@ Info 44 [00:01:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js index 781aabb19272c..23605585be665 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -315,30 +213,6 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files @@ -360,30 +234,6 @@ Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usag Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:38.000] response: { "response": [ @@ -406,56 +256,8 @@ Info 40 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:40.000] response: { "response": false, @@ -472,56 +274,8 @@ Info 42 [00:01:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:42.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js index 83817dae43965..70ffe070f8c25 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -254,30 +200,6 @@ export function fn2() { } function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files @@ -299,30 +221,6 @@ Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usag Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:43.000] response: { "response": [ @@ -345,56 +243,8 @@ Info 42 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:45.000] response: { "response": false, @@ -411,56 +261,8 @@ Info 44 [00:01:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js index 438705ea84b9d..49da1352a089a 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -315,30 +213,6 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files @@ -360,30 +234,6 @@ Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usag Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:38.000] response: { "response": [ @@ -406,56 +256,8 @@ Info 40 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:40.000] response: { "response": false, @@ -472,56 +274,8 @@ Info 42 [00:01:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:42.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js index 6517a3da3cfb3..a925a3980962b 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -255,59 +201,11 @@ export function fn2() { } export function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:29.000] response: { "response": [ @@ -333,56 +231,8 @@ Info 40 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:31.000] response: { "response": false, @@ -400,56 +250,8 @@ Info 42 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:33.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js index 24bb879d01fa5..bcdb6d4f00b95 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -316,59 +214,11 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:24.000] response: { "response": [ @@ -392,56 +242,8 @@ Info 38 [00:01:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:26.000] response: { "response": false, @@ -459,56 +261,8 @@ Info 40 [00:01:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:28.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js index 599caf5917923..ecb291f70c8d6 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -255,59 +201,11 @@ export function fn2() { } function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:29.000] response: { "response": [ @@ -331,56 +229,8 @@ Info 40 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:31.000] response: { "response": false, @@ -398,56 +248,8 @@ Info 42 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:33.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js index c460d4cd336c9..ed7eef9dae8bc 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -316,59 +214,11 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:24.000] response: { "response": [ @@ -392,56 +242,8 @@ Info 38 [00:01:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:26.000] response: { "response": false, @@ -459,56 +261,8 @@ Info 40 [00:01:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:28.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js index 45da5f56908b2..ab2e4609a0f10 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -156,56 +150,8 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] response: { "response": [ @@ -231,56 +177,8 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:05.000] response: { "response": false, @@ -298,56 +196,8 @@ Info 31 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:07.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js index ccd74ce10d56f..a51b05dd94e82 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -245,56 +191,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "response": false, @@ -311,56 +209,8 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js index d3c96d1b62cad..2304351ec8848 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -254,30 +200,6 @@ export function fn2() { } export function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files @@ -299,30 +221,6 @@ Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usag Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:43.000] response: { "response": [ @@ -347,30 +245,6 @@ Info 42 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:47.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 44 [00:01:48.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 45 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -384,30 +258,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:50.000] response: { "response": true, @@ -424,56 +274,8 @@ Info 47 [00:01:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 48 [00:01:52.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js index f8324f3aea384..ce76cd9a77f7b 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -315,30 +213,6 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files @@ -360,30 +234,6 @@ Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usag Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:38.000] response: { "response": [ @@ -408,30 +258,6 @@ Info 40 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 42 [00:01:43.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 43 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -448,30 +274,6 @@ exports.fn3 = fn3; -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:45.000] response: { "response": true, @@ -488,56 +290,8 @@ Info 45 [00:01:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js index 19014833d3631..bbd0efe395adf 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -254,30 +200,6 @@ export function fn2() { } function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files @@ -299,30 +221,6 @@ Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usag Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:43.000] response: { "response": [ @@ -347,30 +245,6 @@ Info 42 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:47.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 44 [00:01:48.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 45 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -384,30 +258,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:50.000] response: { "response": true, @@ -424,56 +274,8 @@ Info 47 [00:01:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 48 [00:01:52.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js index 89586192c24f2..4d2a1be5a2903 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -315,30 +213,6 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files @@ -360,30 +234,6 @@ Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usag Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:38.000] response: { "response": [ @@ -408,30 +258,6 @@ Info 40 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 42 [00:01:43.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 43 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -446,30 +272,6 @@ function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:45.000] response: { "response": true, @@ -486,56 +288,8 @@ Info 45 [00:01:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:47.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js index 9d253cc0fc5e1..7142b0557fc84 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -255,59 +201,11 @@ export function fn2() { } export function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:29.000] response: { "response": [ @@ -333,30 +231,6 @@ Info 40 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 42 [00:01:34.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 43 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -370,30 +244,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:36.000] response: { "response": true, @@ -411,56 +261,8 @@ Info 45 [00:01:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:38.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js index 762d0a6a93600..919a86724fe01 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -316,59 +214,11 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:24.000] response: { "response": [ @@ -394,30 +244,6 @@ Info 38 [00:01:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 40 [00:01:29.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 41 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -434,30 +260,6 @@ exports.fn3 = fn3; -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 42 [00:01:31.000] response: { "response": true, @@ -475,56 +277,8 @@ Info 43 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:33.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js index ad30c3d077262..1562bca430218 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -255,59 +201,11 @@ export function fn2() { } function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 37 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 38 [00:01:28.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:29.000] response: { "response": [ @@ -333,30 +231,6 @@ Info 40 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 42 [00:01:34.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 43 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -370,30 +244,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:36.000] response: { "response": true, @@ -411,56 +261,8 @@ Info 45 [00:01:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:38.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js index e9f23d5c75569..273219a213a0e 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -250,56 +196,8 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:19.000] response: { "responseRequired": false @@ -316,59 +214,11 @@ Info 33 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 36 [00:01:23.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:24.000] response: { "response": [ @@ -394,30 +244,6 @@ Info 38 [00:01:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 40 [00:01:29.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 41 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -432,30 +258,6 @@ function fn3() { } -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 42 [00:01:31.000] response: { "response": true, @@ -473,56 +275,8 @@ Info 43 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:33.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js index 668b59b2cd87e..3936366a02fde 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -156,56 +150,8 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] response: { "response": [ @@ -231,30 +177,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 31 [00:01:08.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 32 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -268,30 +190,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 33 [00:01:10.000] response: { "response": true, @@ -309,56 +207,8 @@ Info 34 [00:01:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 35 [00:01:12.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js index 95585941e0652..9168583c0eb70 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -117,27 +111,27 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,30 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] Before ensureProjectForOpenFiles: Info 29 [00:01:04.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) Info 29 [00:01:05.000] Files (3) @@ -197,30 +167,6 @@ Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usag Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:17.000] response: { "response": [ @@ -245,30 +191,6 @@ Info 31 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:21.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 33 [00:01:22.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js Info 34 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory @@ -282,30 +204,6 @@ var fns_1 = require("../decls/fns"); -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 35 [00:01:24.000] response: { "response": true, @@ -322,56 +220,8 @@ Info 36 [00:01:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:26.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js index 75cd840c1aa0d..48961c71b4d84 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js @@ -48,12 +48,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -125,27 +119,27 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 28 [00:01:03.000] response: @@ -163,56 +157,8 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:05.000] response: { "response": [], @@ -229,56 +175,8 @@ Info 31 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:07.000] response: { "response": [ @@ -309,56 +207,8 @@ Info 33 [00:01:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] response: { "response": [], @@ -375,56 +225,8 @@ Info 35 [00:01:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:11.000] response: { "response": [], @@ -441,56 +243,8 @@ Info 37 [00:01:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 38 [00:01:13.000] response: { "response": [], @@ -507,56 +261,8 @@ Info 39 [00:01:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 40 [00:01:15.000] response: { "response": [], @@ -574,56 +280,8 @@ Info 41 [00:01:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 42 [00:01:17.000] response: { "response": [], @@ -641,56 +299,8 @@ Info 43 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:19.000] response: { "response": [ @@ -722,56 +332,8 @@ Info 45 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:21.000] response: { "response": [], @@ -789,56 +351,8 @@ Info 47 [00:01:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 48 [00:01:23.000] response: { "response": [], @@ -856,56 +370,8 @@ Info 49 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 50 [00:01:25.000] response: { "response": [], @@ -923,56 +389,8 @@ Info 51 [00:01:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 52 [00:01:27.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js index b588140b9551d..a2585c7140167 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js @@ -48,12 +48,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -133,27 +127,27 @@ Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 32 [00:01:07.000] response: @@ -174,220 +168,28 @@ Info 33 [00:01:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 35 [00:01:10.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js index f3cce39901abe..ec6c3816bfe75 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js @@ -48,12 +48,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -133,27 +127,27 @@ Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 32 [00:01:07.000] response: @@ -172,386 +166,50 @@ Info 33 [00:01:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 35 [00:01:10.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 40 [00:01:15.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Info 41 [00:01:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 42 [00:01:17.000] request: { "command": "geterrForProject", @@ -564,382 +222,46 @@ Info 42 [00:01:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:18.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:19.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:20.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:21.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:22.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js index 4aea666e4b384..d248ea6af36c1 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js @@ -48,12 +48,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -125,27 +119,27 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 28 [00:01:03.000] response: @@ -163,30 +157,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:07.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -233,7 +203,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -244,6 +214,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -265,56 +239,8 @@ Info 46 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:33.000] response: { "response": [], @@ -331,56 +257,8 @@ Info 48 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:35.000] response: { "response": [ @@ -411,56 +289,8 @@ Info 50 [00:01:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:37.000] response: { "response": [], @@ -477,56 +307,8 @@ Info 52 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 53 [00:01:39.000] response: { "response": [], @@ -543,56 +325,8 @@ Info 54 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 55 [00:01:41.000] response: { "response": [ @@ -623,56 +357,8 @@ Info 56 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 57 [00:01:43.000] response: { "response": [], @@ -690,56 +376,8 @@ Info 58 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:01:45.000] response: { "response": [], @@ -757,56 +395,8 @@ Info 60 [00:01:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:01:47.000] response: { "response": [ @@ -838,56 +428,8 @@ Info 62 [00:01:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 63 [00:01:49.000] response: { "response": [], @@ -905,56 +447,8 @@ Info 64 [00:01:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 65 [00:01:51.000] response: { "response": [], @@ -972,56 +466,8 @@ Info 66 [00:01:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 67 [00:01:53.000] response: { "response": [], @@ -1039,56 +485,8 @@ Info 68 [00:01:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 69 [00:01:55.000] response: { "response": [], @@ -1106,56 +504,8 @@ Info 70 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 71 [00:01:57.000] response: { "response": [], @@ -1173,56 +523,8 @@ Info 72 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 73 [00:01:59.000] response: { "response": [ @@ -1254,56 +556,8 @@ Info 74 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 75 [00:02:01.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js index 52f7ca2ff574c..e4b5874b93ff3 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js @@ -48,12 +48,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -133,27 +127,27 @@ Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 32 [00:01:07.000] response: @@ -171,30 +165,6 @@ Info 33 [00:01:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 35 [00:01:10.000] Search path: /user/username/projects/myproject/dependency Info 36 [00:01:11.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -249,7 +219,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -260,6 +230,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -285,382 +259,46 @@ Info 54 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 55 [00:01:41.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":12},"end":{"line":6,"offset":13},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js index bf6a23cd382a5..4c153b45620e5 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js @@ -48,12 +48,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -133,27 +127,27 @@ Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 32 [00:01:07.000] response: @@ -171,30 +165,6 @@ Info 33 [00:01:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 35 [00:01:10.000] Search path: /user/username/projects/myproject/dependency Info 36 [00:01:11.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -249,7 +219,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -260,6 +230,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -282,612 +256,84 @@ Info 54 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 55 [00:01:41.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} +Before running immediate callbacks and checking length (1) -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} +Info 57 [00:01:43.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} +Before running immediate callbacks and checking length (1) Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} +Info 58 [00:01:44.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} +Before running immediate callbacks and checking length (1) -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} +Before checking timeout queue length (1) and running -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} +Info 59 [00:01:45.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} +After checking timeout queue length (1) and running -Info 57 [00:01:43.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} +Info 60 [00:01:46.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} +Before running immediate callbacks and checking length (1) -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} +Before running immediate callbacks and checking length (1) +Info 61 [00:01:47.000] event: + {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} +Info 62 [00:01:48.000] event: + {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} +Info 63 [00:01:49.000] request: + { + "command": "geterrForProject", + "arguments": { + "delay": 0, + "file": "/user/username/projects/myproject/dependency/fns.ts" + }, + "seq": 4, + "type": "request" + } +Before request -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} +After request -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} +Info 64 [00:01:50.000] response: + { + "responseRequired": false + } +Before checking timeout queue length (1) and running + +Info 65 [00:01:51.000] event: + {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} +After checking timeout queue length (1) and running -Info 58 [00:01:44.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} +Info 66 [00:01:52.000] event: + {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":12},"end":{"line":6,"offset":13},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} +Before running immediate callbacks and checking length (1) -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Before checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Info 59 [00:01:45.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Info 60 [00:01:46.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Info 61 [00:01:47.000] event: - {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 62 [00:01:48.000] event: - {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Info 63 [00:01:49.000] request: - { - "command": "geterrForProject", - "arguments": { - "delay": 0, - "file": "/user/username/projects/myproject/dependency/fns.ts" - }, - "seq": 4, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Info 64 [00:01:50.000] response: - { - "responseRequired": false - } -Before checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Info 65 [00:01:51.000] event: - {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -After checking timeout queue length (1) and running - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Info 66 [00:01:52.000] event: - {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":12},"end":{"line":6,"offset":13},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} +Before running immediate callbacks and checking length (1) Info 67 [00:01:53.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Info 68 [00:01:54.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js index b2769484adcff..5203c1b2fc8cb 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -119,25 +113,25 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,52 +149,8 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] response: { "response": [], @@ -217,52 +167,8 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:05.000] response: { "response": [ @@ -293,52 +199,8 @@ Info 31 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:07.000] response: { "response": [], @@ -355,52 +217,8 @@ Info 33 [00:01:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] response: { "response": [], @@ -417,52 +235,8 @@ Info 35 [00:01:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:11.000] response: { "response": [], @@ -479,52 +253,8 @@ Info 37 [00:01:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 38 [00:01:13.000] response: { "response": [], @@ -542,52 +272,8 @@ Info 39 [00:01:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 40 [00:01:15.000] response: { "response": [], @@ -605,52 +291,8 @@ Info 41 [00:01:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 42 [00:01:17.000] response: { "response": [ @@ -682,52 +324,8 @@ Info 43 [00:01:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:19.000] response: { "response": [], @@ -745,52 +343,8 @@ Info 45 [00:01:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:21.000] response: { "response": [], @@ -808,52 +362,8 @@ Info 47 [00:01:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 48 [00:01:23.000] response: { "response": [], @@ -871,52 +381,8 @@ Info 49 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 50 [00:01:25.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js index b2432dc565d5f..3bfaefd2c1b14 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -127,25 +121,25 @@ Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 30 [00:01:05.000] response: @@ -166,204 +160,28 @@ Info 31 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:07.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 33 [00:01:08.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 35 [00:01:10.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js index 4101c73f96541..3fa6b9764274f 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -127,25 +121,25 @@ Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 30 [00:01:05.000] response: @@ -164,358 +158,50 @@ Info 31 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:07.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 33 [00:01:08.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 34 [00:01:09.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 35 [00:01:10.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 40 [00:01:15.000] request: { "command": "geterrForProject", @@ -528,354 +214,46 @@ Info 40 [00:01:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 41 [00:01:16.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 42 [00:01:17.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 43 [00:01:18.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 44 [00:01:19.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:20.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:01:21.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:22.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js index e8947ddc94b57..c6f1e48a1c018 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -119,25 +113,25 @@ Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 26 [00:01:01.000] response: @@ -155,28 +149,6 @@ Info 27 [00:01:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 28 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:05.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -221,7 +193,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -232,6 +204,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -253,52 +229,8 @@ Info 44 [00:01:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:01:31.000] response: { "response": [], @@ -315,52 +247,8 @@ Info 46 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:33.000] response: { "response": [ @@ -391,52 +279,8 @@ Info 48 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 49 [00:01:35.000] response: { "response": [], @@ -453,52 +297,8 @@ Info 50 [00:01:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 51 [00:01:37.000] response: { "response": [], @@ -515,52 +315,8 @@ Info 52 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 53 [00:01:39.000] response: { "response": [ @@ -591,51 +347,7 @@ Info 54 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} +After request Info 55 [00:01:41.000] response: { @@ -654,52 +366,8 @@ Info 56 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 57 [00:01:43.000] response: { "response": [], @@ -717,52 +385,8 @@ Info 58 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:01:45.000] response: { "response": [ @@ -794,52 +418,8 @@ Info 60 [00:01:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:01:47.000] response: { "response": [], @@ -857,52 +437,8 @@ Info 62 [00:01:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 63 [00:01:49.000] response: { "response": [], @@ -920,52 +456,8 @@ Info 64 [00:01:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 65 [00:01:51.000] response: { "response": [], @@ -983,52 +475,8 @@ Info 66 [00:01:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 67 [00:01:53.000] response: { "response": [], @@ -1046,52 +494,8 @@ Info 68 [00:01:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 69 [00:01:55.000] response: { "response": [], @@ -1109,52 +513,8 @@ Info 70 [00:01:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 71 [00:01:57.000] response: { "response": [ @@ -1186,52 +546,8 @@ Info 72 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 73 [00:01:59.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js index 2af325c68ed72..08e8e590de39f 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -127,25 +121,25 @@ Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 30 [00:01:05.000] response: @@ -163,28 +157,6 @@ Info 31 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 33 [00:01:08.000] Search path: /user/username/projects/myproject/dependency Info 34 [00:01:09.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -237,7 +209,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -248,6 +220,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -273,354 +249,46 @@ Info 52 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 53 [00:01:39.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":5},"end":{"line":6,"offset":6},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js index f529af4582ad2..847f445564081 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js @@ -43,12 +43,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json @@ -127,25 +121,25 @@ Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsc After request PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: +/user/username/projects/myproject/usage/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: +/user/username/projects/myproject/usage/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/usage: +/user/username/projects/myproject/usage: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 30 [00:01:05.000] response: @@ -163,28 +157,6 @@ Info 31 [00:01:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 32 [00:01:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info Info 33 [00:01:08.000] Search path: /user/username/projects/myproject/dependency Info 34 [00:01:09.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -237,7 +209,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -248,6 +220,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/usage: {} @@ -270,358 +246,50 @@ Info 52 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 53 [00:01:39.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 61 [00:01:47.000] request: { "command": "geterrForProject", @@ -634,204 +302,28 @@ Info 61 [00:01:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - After request -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 62 [00:01:48.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 63 [00:01:49.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 64 [00:01:50.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":5},"end":{"line":6,"offset":6},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} - Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/usage/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/usage/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/usage: - {} -/user/username/projects/myproject/dependency: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js b/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js index f9b6caca5ab80..99b6d520b8419 100644 --- a/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js +++ b/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js @@ -365,12 +365,6 @@ declare namespace container { ====================================================================== -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:16.000] Search path: /user/username/projects/container/compositeExec Info 3 [00:01:17.000] For info: /user/username/projects/container/compositeExec/index.ts :: Config file name: /user/username/projects/container/compositeExec/tsconfig.json Info 4 [00:01:18.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json @@ -449,25 +443,23 @@ Info 26 [00:01:48.000] Projects: /user/username/projects/container/composite After request PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: +/user/username/projects/container/compositeexec/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: +/user/username/projects/container/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: +/user/username/projects/container/compositeexec/tsconfig.json: *new* {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/lib/tsconfig.json: *new* {} -/user/username/projects/container/lib/index.ts: +/user/username/projects/container/lib/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/container/tsconfig.json: +/user/username/projects/container/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 26 [00:01:49.000] response: { "responseRequired": false @@ -483,26 +475,6 @@ Info 27 [00:01:50.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 28 [00:01:51.000] Search path: /user/username/projects/temp Info 29 [00:01:52.000] For info: /user/username/projects/temp/temp.ts :: No config files found. Info 30 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -547,11 +519,11 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/container/node_modules/@types: {"pollingInterval":500} -/user/username/projects/temp/tsconfig.json: +/user/username/projects/temp/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/temp/jsconfig.json: +/user/username/projects/temp/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/temp/node_modules/@types: +/user/username/projects/temp/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -566,8 +538,6 @@ FsWatches:: /user/username/projects/container/tsconfig.json: {} -FsWatchesRecursive:: - Info 39 [00:02:16.000] response: { "responseRequired": false @@ -585,32 +555,6 @@ Info 40 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/temp/tsconfig.json: - {"pollingInterval":2000} -/user/username/projects/temp/jsconfig.json: - {"pollingInterval":2000} -/user/username/projects/temp/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 41 [00:02:18.000] Search path: /user/username/projects/container/lib Info 42 [00:02:19.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json Info 43 [00:02:20.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json @@ -710,9 +654,9 @@ PolledWatches:: {"pollingInterval":2000} /user/username/projects/temp/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: +/user/username/projects/container/lib/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: +/user/username/projects/container/exec/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -726,13 +670,11 @@ FsWatches:: {} /user/username/projects/container/tsconfig.json: {} -/user/username/projects/container/exec/tsconfig.json: +/user/username/projects/container/exec/tsconfig.json: *new* {} -/user/username/projects/container/exec/index.ts: +/user/username/projects/container/exec/index.ts: *new* {} -FsWatchesRecursive:: - Info 75 [00:02:52.000] response: { "response": { @@ -860,6 +802,12 @@ PolledWatches:: /user/username/projects/container/exec/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/temp/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/temp/jsconfig.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/container/compositeexec/tsconfig.json: {} @@ -875,11 +823,9 @@ FsWatches:: {} /user/username/projects/container/exec/index.ts: {} -/user/username/projects/temp/temp.ts: +/user/username/projects/temp/temp.ts: *new* {} -FsWatchesRecursive:: - Info 80 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info Info 81 [00:03:16.000] Search path: /user/username/projects/temp Info 82 [00:03:17.000] For info: /user/username/projects/temp/temp.ts :: No config files found. @@ -937,9 +883,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/container/exec/node_modules/@types: {"pollingInterval":500} -/user/username/projects/temp/tsconfig.json: +/user/username/projects/temp/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/temp/jsconfig.json: +/user/username/projects/temp/jsconfig.json: *new* {"pollingInterval":2000} FsWatches:: @@ -958,7 +904,9 @@ FsWatches:: /user/username/projects/container/exec/index.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/user/username/projects/temp/temp.ts: + {} Info 90 [00:03:45.000] response: { @@ -1035,6 +983,12 @@ PolledWatches:: /user/username/projects/container/exec/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/temp/tsconfig.json: + {"pollingInterval":2000} +/user/username/projects/temp/jsconfig.json: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/container/compositeexec/tsconfig.json: {} @@ -1050,13 +1004,11 @@ FsWatches:: {} /user/username/projects/container/exec/index.ts: {} -/user/username/projects/container/compositeexec/index.ts: +/user/username/projects/container/compositeexec/index.ts: *new* {} -/user/username/projects/temp/temp.ts: +/user/username/projects/temp/temp.ts: *new* {} -FsWatchesRecursive:: - Info 96 [00:04:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info Info 97 [00:04:26.000] Search path: /user/username/projects/temp Info 98 [00:04:27.000] For info: /user/username/projects/temp/temp.ts :: No config files found. @@ -1161,16 +1113,42 @@ After request PolledWatches:: /user/username/projects/temp/node_modules/@types: {"pollingInterval":500} -/user/username/projects/temp/tsconfig.json: +/user/username/projects/temp/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/temp/jsconfig.json: +/user/username/projects/temp/jsconfig.json: *new* {"pollingInterval":2000} +PolledWatches *deleted*:: +/user/username/projects/container/compositeexec/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/container/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/container/lib/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/container/exec/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/user/username/projects/container/compositeexec/tsconfig.json: + {} +/user/username/projects/container/lib/tsconfig.json: + {} +/user/username/projects/container/lib/index.ts: + {} +/user/username/projects/container/tsconfig.json: + {} +/user/username/projects/container/exec/tsconfig.json: + {} +/user/username/projects/container/exec/index.ts: + {} +/user/username/projects/container/compositeexec/index.ts: + {} +/user/username/projects/temp/temp.ts: + {} Info 143 [00:05:18.000] response: { diff --git a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js index 84ad070d7e772..2cd928f1fe059 100644 --- a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js +++ b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js @@ -214,12 +214,6 @@ export declare function foo(): void; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/app/src/program Info 3 [00:01:14.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json @@ -317,43 +311,43 @@ Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/app/src/p After request PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: +/user/username/projects/myproject/app/src/program/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: +/user/username/projects/myproject/app/src/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: +/user/username/projects/myproject/app/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: +/user/username/projects/myproject/app/src/program/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: +/user/username/projects/myproject/app/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: +/user/username/projects/myproject/app/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: +/user/username/projects/myproject/app/src/program/tsconfig.json: *new* {} -/user/username/projects/myproject/app/src/program/bar.ts: +/user/username/projects/myproject/app/src/program/bar.ts: *new* {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: +/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* {} -/user/username/projects/myproject/shared/bld/library/index.d.ts: +/user/username/projects/myproject/shared/bld/library/index.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/shared/package.json: +/user/username/projects/myproject/shared/package.json: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: +/user/username/projects/myproject/app/src/program: *new* {} -/user/username/projects/myproject/shared/src/library: +/user/username/projects/myproject/shared/src/library: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 44 [00:02:04.000] response: @@ -378,90 +372,10 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: - {} -/user/username/projects/myproject/app/src/program/bar.ts: - {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: - {} -/user/username/projects/myproject/shared/bld/library/index.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/shared/package.json: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: - {} -/user/username/projects/myproject/shared/src/library: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info 47 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache After request -PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: - {} -/user/username/projects/myproject/app/src/program/bar.ts: - {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: - {} -/user/username/projects/myproject/shared/bld/library/index.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/shared/package.json: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: - {} -/user/username/projects/myproject/shared/src/library: - {} -/user/username/projects/myproject/node_modules: - {} - Info 48 [00:02:08.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js index d4b1acb0ed249..6e9611c2a193c 100644 --- a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js @@ -214,12 +214,6 @@ export declare function foo(): void; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/app/src/program Info 3 [00:01:14.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json @@ -316,43 +310,43 @@ Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/app/src/p After request PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: +/user/username/projects/myproject/app/src/program/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: +/user/username/projects/myproject/app/src/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: +/user/username/projects/myproject/app/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: +/user/username/projects/myproject/app/src/program/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: +/user/username/projects/myproject/app/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: +/user/username/projects/myproject/app/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: +/user/username/projects/myproject/app/src/program/tsconfig.json: *new* {} -/user/username/projects/myproject/app/src/program/bar.ts: +/user/username/projects/myproject/app/src/program/bar.ts: *new* {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: +/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* {} -/user/username/projects/myproject/shared/src/library/index.ts: +/user/username/projects/myproject/shared/src/library/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/shared/package.json: +/user/username/projects/myproject/shared/package.json: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: +/user/username/projects/myproject/app/src/program: *new* {} -/user/username/projects/myproject/shared/src/library: +/user/username/projects/myproject/shared/src/library: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 44 [00:02:04.000] response: @@ -377,90 +371,10 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: - {} -/user/username/projects/myproject/app/src/program/bar.ts: - {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: - {} -/user/username/projects/myproject/shared/src/library/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/shared/package.json: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: - {} -/user/username/projects/myproject/shared/src/library: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info 47 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache After request -PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: - {} -/user/username/projects/myproject/app/src/program/bar.ts: - {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: - {} -/user/username/projects/myproject/shared/src/library/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/shared/package.json: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: - {} -/user/username/projects/myproject/shared/src/library: - {} -/user/username/projects/myproject/node_modules: - {} - Info 48 [00:02:08.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js index fa7837b251728..3884d74cdeddd 100644 --- a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js @@ -45,12 +45,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:49.000] Search path: /user/username/projects/myproject/app/src/program Info 3 [00:00:50.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json Info 4 [00:00:51.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json @@ -147,43 +141,43 @@ Info 44 [00:01:39.000] Projects: /user/username/projects/myproject/app/src/p After request PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: +/user/username/projects/myproject/app/src/program/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: +/user/username/projects/myproject/app/src/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: +/user/username/projects/myproject/app/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: +/user/username/projects/myproject/app/src/program/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: +/user/username/projects/myproject/app/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: +/user/username/projects/myproject/app/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: +/user/username/projects/myproject/app/src/program/tsconfig.json: *new* {} -/user/username/projects/myproject/app/src/program/bar.ts: +/user/username/projects/myproject/app/src/program/bar.ts: *new* {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: +/user/username/projects/myproject/shared/src/library/tsconfig.json: *new* {} -/user/username/projects/myproject/shared/src/library/index.ts: +/user/username/projects/myproject/shared/src/library/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/shared/package.json: +/user/username/projects/myproject/shared/package.json: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: +/user/username/projects/myproject/app/src/program: *new* {} -/user/username/projects/myproject/shared/src/library: +/user/username/projects/myproject/shared/src/library: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 44 [00:01:40.000] response: @@ -208,90 +202,10 @@ Info 45 [00:01:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: - {} -/user/username/projects/myproject/app/src/program/bar.ts: - {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: - {} -/user/username/projects/myproject/shared/src/library/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/shared/package.json: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: - {} -/user/username/projects/myproject/shared/src/library: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info 47 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache After request -PolledWatches:: -/user/username/projects/myproject/app/src/program/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/program/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/app/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/app/src/program/tsconfig.json: - {} -/user/username/projects/myproject/app/src/program/bar.ts: - {} -/user/username/projects/myproject/shared/src/library/tsconfig.json: - {} -/user/username/projects/myproject/shared/src/library/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/shared/package.json: - {} -/user/username/projects/myproject/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/app/src/program: - {} -/user/username/projects/myproject/shared/src/library: - {} -/user/username/projects/myproject/node_modules: - {} - Info 48 [00:01:44.000] response: { "response": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js b/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js index c0436f6483512..c9ed0502c02b7 100644 --- a/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js +++ b/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js @@ -362,12 +362,6 @@ declare namespace container { ====================================================================== -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:12.000] Search path: /user/username/projects/container/compositeExec Info 3 [00:01:13.000] For info: /user/username/projects/container/compositeExec/index.ts :: Config file name: /user/username/projects/container/compositeExec/tsconfig.json Info 4 [00:01:14.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json @@ -446,25 +440,23 @@ Info 26 [00:01:44.000] Projects: /user/username/projects/container/composite After request PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: +/user/username/projects/container/compositeexec/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: +/user/username/projects/container/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: +/user/username/projects/container/compositeexec/tsconfig.json: *new* {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/lib/tsconfig.json: *new* {} -/user/username/projects/container/lib/index.ts: +/user/username/projects/container/lib/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/container/tsconfig.json: +/user/username/projects/container/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 26 [00:01:45.000] response: { "responseRequired": false @@ -482,26 +474,6 @@ Info 27 [00:01:46.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 28 [00:01:47.000] Search path: /user/username/projects/container/lib Info 29 [00:01:48.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json Info 30 [00:01:49.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json @@ -595,9 +567,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/container/node_modules/@types: {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: +/user/username/projects/container/lib/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: +/user/username/projects/container/exec/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -611,13 +583,11 @@ FsWatches:: {} /user/username/projects/container/tsconfig.json: {} -/user/username/projects/container/exec/tsconfig.json: +/user/username/projects/container/exec/tsconfig.json: *new* {} -/user/username/projects/container/exec/index.ts: +/user/username/projects/container/exec/index.ts: *new* {} -FsWatchesRecursive:: - Info 62 [00:02:21.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js b/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js index 1cea9136d4b02..f1080d7374b31 100644 --- a/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js @@ -503,67 +503,35 @@ declare namespace container { PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: +/user/username/projects/container/compositeexec/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: +/user/username/projects/container/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: +/user/username/projects/container/exec/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: +/user/username/projects/container/lib/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: +/user/username/projects/container/compositeexec/tsconfig.json: *new* {} -/user/username/projects/container/compositeexec/index.ts: +/user/username/projects/container/compositeexec/index.ts: *new* {} -/user/username/projects/container/lib/tsconfig.json: +/user/username/projects/container/lib/tsconfig.json: *new* {} -/user/username/projects/container/lib/index.ts: +/user/username/projects/container/lib/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/container/exec/tsconfig.json: +/user/username/projects/container/exec/tsconfig.json: *new* {} -/user/username/projects/container/exec/index.ts: +/user/username/projects/container/exec/index.ts: *new* {} -/user/username/projects/container/tsconfig.json: +/user/username/projects/container/tsconfig.json: *new* {} -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 50 [00:02:00.000] response: { "response": [], @@ -580,68 +548,8 @@ Info 51 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 52 [00:02:02.000] response: { "response": [], @@ -659,68 +567,8 @@ Info 53 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 54 [00:02:04.000] response: { "response": [], @@ -738,68 +586,8 @@ Info 55 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 56 [00:02:06.000] response: { "response": [], @@ -816,68 +604,8 @@ Info 57 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 58 [00:02:08.000] response: { "response": [], @@ -894,68 +622,8 @@ Info 59 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 60 [00:02:10.000] response: { "response": [], @@ -973,68 +641,8 @@ Info 61 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 62 [00:02:12.000] response: { "response": [], @@ -1052,68 +660,8 @@ Info 63 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 64 [00:02:14.000] response: { "response": [], @@ -1130,68 +678,8 @@ Info 65 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 66 [00:02:16.000] response: { "response": [], @@ -1208,68 +696,8 @@ Info 67 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 68 [00:02:18.000] response: { "response": [], @@ -1287,68 +715,8 @@ Info 69 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 70 [00:02:20.000] response: { "response": [], @@ -1366,68 +734,8 @@ Info 71 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 72 [00:02:22.000] response: { "response": [], @@ -1444,68 +752,8 @@ Info 73 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 74 [00:02:24.000] response: { "response": [], @@ -1522,68 +770,8 @@ Info 75 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 76 [00:02:26.000] response: { "response": [], @@ -1601,68 +789,8 @@ Info 77 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 78 [00:02:28.000] response: { "response": [], @@ -1680,68 +808,8 @@ Info 79 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 80 [00:02:30.000] response: { "response": [], @@ -1758,68 +826,8 @@ Info 81 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - After request -PolledWatches:: -/user/username/projects/container/compositeexec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/exec/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/container/lib/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/container/compositeexec/tsconfig.json: - {} -/user/username/projects/container/compositeexec/index.ts: - {} -/user/username/projects/container/lib/tsconfig.json: - {} -/user/username/projects/container/lib/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/container/exec/tsconfig.json: - {} -/user/username/projects/container/exec/index.ts: - {} -/user/username/projects/container/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 82 [00:02:32.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index 170dee7b05f05..0d5adc4bf6ebc 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -160,28 +154,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:06.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -232,7 +204,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -242,9 +214,9 @@ FsWatches:: {} /user/username/projects/myproject/b/lib/index.d.ts: {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -270,34 +242,6 @@ Info 49 [00:01:35.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 50 [00:01:36.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 51 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -311,7 +255,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/b/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 47fd0cb41b520..35524e0172dc4 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -163,28 +157,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:08.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:09.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -235,7 +207,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -245,9 +217,9 @@ FsWatches:: {} /user/username/projects/myproject/b/lib/index.d.ts: {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -273,34 +245,6 @@ Info 49 [00:01:37.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 50 [00:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 51 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info Info 52 [00:01:40.000] Search path: /user/username/projects/myproject/b @@ -331,7 +275,7 @@ FsWatches:: {} /user/username/projects/myproject/b: {} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index 2a58b2234120d..083c309e78a13 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -160,28 +154,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:06.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -231,7 +203,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -241,7 +213,7 @@ FsWatches:: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -267,32 +239,6 @@ Info 48 [00:01:34.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 49 [00:01:35.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 50 [00:01:36.000] Search path: /user/username/projects/myproject/b Info 51 [00:01:37.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -301,32 +247,6 @@ Info 53 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts Info 54 [00:01:40.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 55 [00:01:41.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 5f64a6de33a5d..61455988ed59d 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -163,28 +157,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:08.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:09.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -234,7 +206,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -244,7 +216,7 @@ FsWatches:: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -270,32 +242,6 @@ Info 48 [00:01:36.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 49 [00:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 50 [00:01:38.000] Search path: /user/username/projects/myproject/b Info 51 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -304,32 +250,6 @@ Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts Info 54 [00:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 55 [00:01:43.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index 76cabfbba5f82..db778f0e64bb6 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -160,28 +154,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:06.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -232,7 +204,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -242,9 +214,9 @@ FsWatches:: {} /user/username/projects/myproject/b/lib/index.d.ts: {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -270,34 +242,6 @@ Info 49 [00:01:35.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 50 [00:01:36.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 51 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -311,7 +255,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/b/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index ccf1d7626c744..3ce3fbb231f3b 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -163,28 +157,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:08.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:09.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -235,7 +207,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -245,9 +217,9 @@ FsWatches:: {} /user/username/projects/myproject/b/lib/index.d.ts: {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -273,34 +245,6 @@ Info 49 [00:01:37.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 50 [00:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 51 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info Info 52 [00:01:40.000] Search path: /user/username/projects/myproject/b @@ -331,7 +275,7 @@ FsWatches:: {} /user/username/projects/myproject/b: {} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index e9666b9447fd6..bb356a067b30c 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -160,28 +154,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:06.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -231,7 +203,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -241,7 +213,7 @@ FsWatches:: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -267,32 +239,6 @@ Info 48 [00:01:34.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 49 [00:01:35.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 50 [00:01:36.000] Search path: /user/username/projects/myproject/b Info 51 [00:01:37.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -301,32 +247,6 @@ Info 53 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts Info 54 [00:01:40.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 55 [00:01:41.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 883254c0c95cd..84ad07704a931 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -163,28 +157,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Search path: /user/username/projects/myproject/b Info 31 [00:01:08.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 32 [00:01:09.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json @@ -234,7 +206,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -244,7 +216,7 @@ FsWatches:: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: @@ -270,32 +242,6 @@ Info 48 [00:01:36.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 49 [00:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 50 [00:01:38.000] Search path: /user/username/projects/myproject/b Info 51 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -304,32 +250,6 @@ Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts Info 54 [00:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} -/user/username/projects/myproject/b: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 55 [00:01:43.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index b32c0470ff19f..920dce3a6ac49 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -162,28 +156,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -195,7 +167,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index ce9a7da3791b8..b35b49cd2ffb5 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -165,28 +159,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info Info 32 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info @@ -211,9 +183,9 @@ FsWatches:: {} /user/username/projects/myproject/b/lib/index.d.ts: {} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index b91ae42c9a0f5..c9a3e3d0f3667 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -162,28 +156,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -191,28 +163,6 @@ Info 33 [00:01:08.000] Search path: /user/username/projects/myproject/b Info 34 [00:01:09.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 35 [00:01:10.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 424f2c604ac3c..46d03caf1f517 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -165,28 +159,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -194,28 +166,6 @@ Info 33 [00:01:10.000] Search path: /user/username/projects/myproject/b Info 34 [00:01:11.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json After request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 35 [00:01:12.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index d4860718beb14..bb73092f6b546 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -162,28 +156,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -195,7 +167,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 148fa3ad8cd59..fe485f4c14d08 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/lib/index.d.ts: +/user/username/projects/myproject/b/lib/index.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -165,28 +159,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/lib/index.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info Info 32 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info @@ -228,7 +200,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -238,13 +210,13 @@ FsWatches:: {} /user/username/projects/myproject/b/lib/index.d.ts: {} -/user/username/projects/myproject/b/lib/index.d.ts.map: +/user/username/projects/myproject/b/lib/index.d.ts.map: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} -/user/username/projects/myproject/b/helper.ts: +/user/username/projects/myproject/b/helper.ts: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index 91f91f502fc80..ce8074c39527e 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -46,12 +46,6 @@ export declare class B { //# sourceMappingURL=index.d.ts.map -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -124,25 +118,25 @@ Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:03.000] response: @@ -162,28 +156,6 @@ Info 29 [00:01:04.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:05.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -223,7 +195,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -233,9 +205,9 @@ FsWatches:: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b/helper.ts: +/user/username/projects/myproject/b/helper.ts: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index d8a21fd5b1a3b..f96f608288fe8 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -49,12 +49,6 @@ export declare class B { {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,CAAC;IACV,CAAC;CACJ"} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json @@ -127,25 +121,25 @@ Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfi After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: +/user/username/projects/myproject/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: +/user/username/projects/myproject/a/tsconfig.json: *new* {} -/user/username/projects/myproject/b/tsconfig.json: +/user/username/projects/myproject/b/tsconfig.json: *new* {} -/user/username/projects/myproject/b/index.ts: +/user/username/projects/myproject/b/index.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/a: +/user/username/projects/myproject/a: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} Info 28 [00:01:05.000] response: @@ -165,28 +159,6 @@ Info 29 [00:01:06.000] request: } Before request -PolledWatches:: -/a/lib/lib.d.ts: - {"pollingInterval":500} -/user/username/projects/myproject/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/a/tsconfig.json: - {} -/user/username/projects/myproject/b/tsconfig.json: - {} -/user/username/projects/myproject/b/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/a: - {} -/user/username/projects/myproject/b: - {} - Info 30 [00:01:07.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json @@ -226,7 +198,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/b/node_modules/@types: +/user/username/projects/myproject/b/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -236,9 +208,9 @@ FsWatches:: {} /user/username/projects/myproject/b/index.ts: {} -/user/username/projects/myproject/b/helper.ts: +/user/username/projects/myproject/b/helper.ts: *new* {} -/user/username/projects/myproject/b: +/user/username/projects/myproject/b: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor/sibling-projects.js b/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor/sibling-projects.js index c7d7f3804a862..c3e3d7c536dab 100644 --- a/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor/sibling-projects.js +++ b/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor/sibling-projects.js @@ -55,12 +55,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:36.000] Search path: /user/username/projects/solution/compiler Info 3 [00:00:37.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json Info 4 [00:00:38.000] Creating configuration project /user/username/projects/solution/compiler/tsconfig.json @@ -119,23 +113,21 @@ Info 24 [00:01:06.000] Projects: /user/username/projects/solution/compiler/t After request PolledWatches:: -/user/username/projects/solution/compiler/node_modules/@types: +/user/username/projects/solution/compiler/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/compiler/tsconfig.json: +/user/username/projects/solution/compiler/tsconfig.json: *new* {} -/user/username/projects/solution/compiler/types.ts: +/user/username/projects/solution/compiler/types.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 24 [00:01:07.000] response: { "responseRequired": false @@ -153,45 +145,9 @@ Info 25 [00:01:08.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/compiler/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/compiler/tsconfig.json: - {} -/user/username/projects/solution/compiler/types.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 26 [00:01:09.000] Finding references to /user/username/projects/solution/compiler/program.ts position 133 in project /user/username/projects/solution/compiler/tsconfig.json After request -PolledWatches:: -/user/username/projects/solution/compiler/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/compiler/tsconfig.json: - {} -/user/username/projects/solution/compiler/types.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 27 [00:01:10.000] response: { "response": { @@ -250,24 +206,6 @@ Info 28 [00:01:11.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/compiler/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/compiler/tsconfig.json: - {} -/user/username/projects/solution/compiler/types.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: - Info 29 [00:01:12.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json Info 30 [00:01:13.000] Loading configured project /user/username/projects/solution/tsconfig.json Info 31 [00:01:14.000] Config: /user/username/projects/solution/tsconfig.json : { @@ -348,9 +286,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/services/node_modules/@types: +/user/username/projects/solution/services/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/compiler/types.d.ts: +/user/username/projects/solution/compiler/types.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -362,13 +300,11 @@ FsWatches:: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/services/tsconfig.json: +/user/username/projects/solution/services/tsconfig.json: *new* {} -/user/username/projects/solution/services/services.ts: +/user/username/projects/solution/services/services.ts: *new* {} -FsWatchesRecursive:: - Info 58 [00:01:41.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js b/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js index 7e317a49492b6..5ca9432639284 100644 --- a/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js +++ b/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js @@ -68,12 +68,6 @@ interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:46.000] Search path: /user/username/projects/solution/b Info 3 [00:00:47.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/b/tsconfig.json @@ -152,27 +146,27 @@ Info 30 [00:01:22.000] Projects: /user/username/projects/solution/b/tsconfig After request PolledWatches:: -/user/username/projects/solution/b/node_modules/@types: +/user/username/projects/solution/b/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/b/tsconfig.json: +/user/username/projects/solution/b/tsconfig.json: *new* {} -/user/username/projects/solution/a/tsconfig.json: +/user/username/projects/solution/a/tsconfig.json: *new* {} -/user/username/projects/solution/a/index.ts: +/user/username/projects/solution/a/index.ts: *new* {} -/user/username/projects/solution: +/user/username/projects/solution: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/a: +/user/username/projects/solution/a: *new* {} Info 30 [00:01:23.000] response: @@ -192,30 +186,6 @@ Info 31 [00:01:24.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/b/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/b/tsconfig.json: - {} -/user/username/projects/solution/a/tsconfig.json: - {} -/user/username/projects/solution/a/index.ts: - {} -/user/username/projects/solution: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/a: - {} - Info 32 [00:01:25.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json Info 33 [00:01:26.000] Search path: /user/username/projects/solution/a Info 34 [00:01:27.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json @@ -410,11 +380,11 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/a/node_modules/@types: +/user/username/projects/solution/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/c/node_modules/@types: +/user/username/projects/solution/c/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/d/node_modules/@types: +/user/username/projects/solution/d/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -430,21 +400,21 @@ FsWatches:: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/c/tsconfig.json: +/user/username/projects/solution/c/tsconfig.json: *new* {} -/user/username/projects/solution/d/tsconfig.json: +/user/username/projects/solution/d/tsconfig.json: *new* {} -/user/username/projects/solution/c/index.ts: +/user/username/projects/solution/c/index.ts: *new* {} -/user/username/projects/solution/d/index.ts: +/user/username/projects/solution/d/index.ts: *new* {} FsWatchesRecursive:: /user/username/projects/solution/a: {} -/user/username/projects/solution/b: +/user/username/projects/solution/b: *new* {} -/user/username/projects/solution/c: +/user/username/projects/solution/c: *new* {} Info 123 [00:02:56.000] response: @@ -594,48 +564,6 @@ Info 124 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/b/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/d/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/b/tsconfig.json: - {} -/user/username/projects/solution/a/tsconfig.json: - {} -/user/username/projects/solution/a/index.ts: - {} -/user/username/projects/solution: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} -/user/username/projects/solution/c/tsconfig.json: - {} -/user/username/projects/solution/d/tsconfig.json: - {} -/user/username/projects/solution/c/index.ts: - {} -/user/username/projects/solution/d/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/a: - {} -/user/username/projects/solution/b: - {} -/user/username/projects/solution/c: - {} - Info 125 [00:02:58.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json Info 126 [00:02:59.000] Search path: /user/username/projects/solution/a Info 127 [00:03:00.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json @@ -672,48 +600,6 @@ Info 157 [00:03:30.000] For info: /user/username/projects/solution/c/index.ts : Info 158 [00:03:31.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json After request -PolledWatches:: -/user/username/projects/solution/b/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/c/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/d/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/b/tsconfig.json: - {} -/user/username/projects/solution/a/tsconfig.json: - {} -/user/username/projects/solution/a/index.ts: - {} -/user/username/projects/solution: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} -/user/username/projects/solution/c/tsconfig.json: - {} -/user/username/projects/solution/d/tsconfig.json: - {} -/user/username/projects/solution/c/index.ts: - {} -/user/username/projects/solution/d/index.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/a: - {} -/user/username/projects/solution/b: - {} -/user/username/projects/solution/c: - {} - Info 159 [00:03:32.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js index 0a18c7089971b..b89bdd4295689 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:14.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -328,37 +322,37 @@ Info 42 [00:01:58.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:59.000] response: @@ -379,304 +373,32 @@ Info 43 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:01.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:02.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:03.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:04.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:02:05.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:06.000] request: { "command": "updateOpen", @@ -705,76 +427,8 @@ Info 49 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:07.000] response: { "response": true, @@ -794,116 +448,14 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:09.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:12.000] Different program with same set of files @@ -911,186 +463,16 @@ Info 56 [00:02:13.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:14.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:15.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:02:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js index 8a560d5bec9e1..16b029fdb7b01 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:14.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -326,37 +320,37 @@ Info 42 [00:01:58.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:59.000] response: @@ -377,304 +371,32 @@ Info 43 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:01.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:02.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:03.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:04.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:02:05.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:06.000] request: { "command": "updateOpen", @@ -703,76 +425,8 @@ Info 49 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:07.000] response: { "response": true, @@ -792,116 +446,14 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:09.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:12.000] Different program with same set of files @@ -909,186 +461,16 @@ Info 56 [00:02:13.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:14.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:15.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:02:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js index a9f289e5136d1..ae12e144b6bbf 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:45.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:46.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:47.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -150,37 +144,37 @@ Info 42 [00:01:30.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:31.000] response: @@ -201,304 +195,32 @@ Info 43 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:33.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:34.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:35.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:36.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:38.000] request: { "command": "updateOpen", @@ -527,76 +249,8 @@ Info 49 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:39.000] response: { "response": true, @@ -616,116 +270,14 @@ Info 51 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:41.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:44.000] Different program with same set of files @@ -733,186 +285,16 @@ Info 56 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js index afce374791f77..7e53ecc4c9bf7 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:45.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:46.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:47.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -148,37 +142,37 @@ Info 42 [00:01:30.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:31.000] response: @@ -199,304 +193,32 @@ Info 43 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:33.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:34.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:35.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:36.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:38.000] request: { "command": "updateOpen", @@ -525,76 +247,8 @@ Info 49 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:39.000] response: { "response": true, @@ -614,116 +268,14 @@ Info 51 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:41.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:44.000] Different program with same set of files @@ -731,186 +283,16 @@ Info 56 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js index dcf7afca16b9b..259e9663ccc16 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:15.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:16.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:17.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -328,37 +322,37 @@ Info 42 [00:02:00.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:02:01.000] response: @@ -379,304 +373,32 @@ Info 43 [00:02:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:03.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:04.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:05.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:02:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:08.000] request: { "command": "updateOpen", @@ -705,76 +427,8 @@ Info 49 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:09.000] response: { "response": true, @@ -794,116 +448,14 @@ Info 51 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:11.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:14.000] Different program with same set of files @@ -911,186 +463,16 @@ Info 56 [00:02:15.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:16.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:17.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:02:18.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js index 73168d1dda41f..1c922836a6c66 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:15.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:16.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:17.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -326,37 +320,37 @@ Info 42 [00:02:00.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:02:01.000] response: @@ -377,304 +371,32 @@ Info 43 [00:02:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:03.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:04.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:05.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:02:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:08.000] request: { "command": "updateOpen", @@ -703,76 +425,8 @@ Info 49 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:09.000] response: { "response": true, @@ -792,116 +446,14 @@ Info 51 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:11.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:14.000] Different program with same set of files @@ -909,186 +461,16 @@ Info 56 [00:02:15.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:16.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:17.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:02:18.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js index 46199efe62319..cc2ba93b975e0 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/@issue/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -150,37 +144,37 @@ Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:33.000] response: @@ -201,304 +195,32 @@ Info 43 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:35.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:36.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:40.000] request: { "command": "updateOpen", @@ -527,76 +249,8 @@ Info 49 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:41.000] response: { "response": true, @@ -616,116 +270,14 @@ Info 51 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:43.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:46.000] Different program with same set of files @@ -733,186 +285,16 @@ Info 56 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js index b62c035e7a25e..e57da30b24dfe 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/@issue/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -148,37 +142,37 @@ Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/index.ts: +/user/username/projects/myproject/packages/b/src/index.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar.ts: +/user/username/projects/myproject/packages/b/src/bar.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:33.000] response: @@ -199,304 +193,32 @@ Info 43 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:35.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:36.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:40.000] request: { "command": "updateOpen", @@ -525,76 +247,8 @@ Info 49 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:41.000] response: { "response": true, @@ -614,116 +268,14 @@ Info 51 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:43.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:46.000] Different program with same set of files @@ -731,186 +283,16 @@ Info 56 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js index d60311dc429cb..4d80fefc807f6 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:18.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:19.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:20.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -328,37 +322,37 @@ Info 42 [00:02:03.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:02:04.000] response: @@ -379,304 +373,32 @@ Info 43 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:06.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:07.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:08.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:09.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:02:10.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:11.000] request: { "command": "updateOpen", @@ -705,76 +427,8 @@ Info 49 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:12.000] response: { "response": true, @@ -794,116 +448,14 @@ Info 51 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:14.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:17.000] Different program with same set of files @@ -911,186 +463,16 @@ Info 56 [00:02:18.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:19.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:20.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:02:21.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js index 9a4293a58c4a3..35d48f56900f1 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:18.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:19.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:20.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -326,37 +320,37 @@ Info 42 [00:02:03.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:02:04.000] response: @@ -377,304 +371,32 @@ Info 43 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:06.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:07.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:08.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:09.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:02:10.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:11.000] request: { "command": "updateOpen", @@ -703,76 +425,8 @@ Info 49 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:12.000] response: { "response": true, @@ -792,116 +446,14 @@ Info 51 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:14.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:17.000] Different program with same set of files @@ -909,186 +461,16 @@ Info 56 [00:02:18.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:19.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:20.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:02:21.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js index 0ef593a9cedaa..0e8f639818439 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -150,37 +144,37 @@ Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:33.000] response: @@ -201,304 +195,32 @@ Info 43 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:35.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:36.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:40.000] request: { "command": "updateOpen", @@ -527,76 +249,8 @@ Info 49 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:41.000] response: { "response": true, @@ -616,116 +270,14 @@ Info 51 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:43.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:46.000] Different program with same set of files @@ -733,186 +285,16 @@ Info 56 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js index 9cd56186adc11..43775ebe29120 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -148,37 +142,37 @@ Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:33.000] response: @@ -199,304 +193,32 @@ Info 43 [00:01:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:35.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:36.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:40.000] request: { "command": "updateOpen", @@ -525,76 +247,8 @@ Info 49 [00:01:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:41.000] response: { "response": true, @@ -614,116 +268,14 @@ Info 51 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:43.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:46.000] Different program with same set of files @@ -731,186 +283,16 @@ Info 56 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js index 9c1495d2d5de0..81d72b6c470ba 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:20.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:21.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:22.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -328,37 +322,37 @@ Info 42 [00:02:05.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:02:06.000] response: @@ -379,304 +373,32 @@ Info 43 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:08.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:09.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:10.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:11.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:02:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:13.000] request: { "command": "updateOpen", @@ -705,76 +427,8 @@ Info 49 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:14.000] response: { "response": true, @@ -794,116 +448,14 @@ Info 51 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:16.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:19.000] Different program with same set of files @@ -911,186 +463,16 @@ Info 56 [00:02:20.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:21.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:22.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:02:23.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js index 919c8f1761c33..48b52a6253946 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js @@ -224,12 +224,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:20.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:01:21.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:01:22.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -326,37 +320,37 @@ Info 42 [00:02:05.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:02:06.000] response: @@ -377,304 +371,32 @@ Info 43 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:02:08.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:02:09.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:02:10.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:02:11.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:02:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:02:13.000] request: { "command": "updateOpen", @@ -703,76 +425,8 @@ Info 49 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:02:14.000] response: { "response": true, @@ -792,116 +446,14 @@ Info 51 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:02:16.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:02:19.000] Different program with same set of files @@ -909,186 +461,16 @@ Info 56 [00:02:20.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:02:21.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:02:22.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:02:23.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js index ac073ba60f17d..babe30cbdf51f 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/@issue/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:49.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:50.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:51.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -150,37 +144,37 @@ Info 42 [00:01:34.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:35.000] response: @@ -201,304 +195,32 @@ Info 43 [00:01:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:37.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:42.000] request: { "command": "updateOpen", @@ -527,76 +249,8 @@ Info 49 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:43.000] response: { "response": true, @@ -616,116 +270,14 @@ Info 51 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:45.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:48.000] Different program with same set of files @@ -733,186 +285,16 @@ Info 56 [00:01:49.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:50.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js index b3127d862b10b..5a0a9c4022a90 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js @@ -46,12 +46,6 @@ export function bar() { } //// [/user/username/projects/myproject/node_modules/@issue/b] symlink(/user/username/projects/myproject/packages/B) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:49.000] Search path: /user/username/projects/myproject/packages/A/src Info 3 [00:00:50.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json Info 4 [00:00:51.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json @@ -148,37 +142,37 @@ Info 42 [00:01:34.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: +/user/username/projects/myproject/packages/a/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: +/user/username/projects/myproject/packages/a/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: +/user/username/projects/myproject/packages/a/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/tsconfig.json: +/user/username/projects/myproject/packages/b/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/b/src/foo.ts: +/user/username/projects/myproject/packages/b/src/foo.ts: *new* {} -/user/username/projects/myproject/packages/b/src/bar/foo.ts: +/user/username/projects/myproject/packages/b/src/bar/foo.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/b/package.json: +/user/username/projects/myproject/packages/b/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/a/src: +/user/username/projects/myproject/packages/a/src: *new* {} -/user/username/projects/myproject/packages/b/src: +/user/username/projects/myproject/packages/b/src: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:35.000] response: @@ -199,304 +193,32 @@ Info 43 [00:01:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:37.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 48 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 49 [00:01:42.000] request: { "command": "updateOpen", @@ -525,76 +247,8 @@ Info 49 [00:01:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 50 [00:01:43.000] response: { "response": true, @@ -614,116 +268,14 @@ Info 51 [00:01:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 52 [00:01:45.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 53 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Info 54 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 55 [00:01:48.000] Different program with same set of files @@ -731,186 +283,16 @@ Info 56 [00:01:49.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 57 [00:01:50.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} - Info 58 [00:01:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Info 59 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/a/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/a/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/a/tsconfig.json: - {} -/user/username/projects/myproject/packages/b/tsconfig.json: - {} -/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/a/src: - {} -/user/username/projects/myproject/packages/b/src: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js index 0876f48742e47..e1dc4f3da35d6 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js @@ -38,12 +38,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json @@ -117,27 +111,27 @@ Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/ After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/projects/node_modules/@types: +/user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/class1.d.ts: +/user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: +/user/username/projects/myproject/projects/project2: *new* {} -/user/username/projects/myproject/projects/project1: +/user/username/projects/myproject/projects/project1: *new* {} Info 28 [00:01:07.000] response: @@ -153,30 +147,6 @@ Before checking timeout queue length (2) and running class class3 {} -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 33 [00:01:14.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info 34 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Info 35 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file @@ -208,7 +178,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -248,6 +218,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {} @@ -322,7 +296,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: @@ -342,60 +316,8 @@ Before checking timeout queue length (0) and running declare class file {} -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 65 [00:02:17.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info Info 66 [00:02:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:19.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -425,6 +347,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/projects/project2: {} @@ -476,7 +402,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -516,6 +442,10 @@ PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {} @@ -590,7 +520,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js index ed5cde45ad9e0..410b667381bdd 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js @@ -38,12 +38,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/ After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/projects/node_modules/@types: +/user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/class1.ts: +/user/username/projects/myproject/projects/project1/class1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: +/user/username/projects/myproject/projects/project2: *new* {} -/user/username/projects/myproject/projects/project1: +/user/username/projects/myproject/projects/project1: *new* {} Info 28 [00:01:07.000] response: @@ -152,30 +146,6 @@ Before checking timeout queue length (2) and running class class3 {} -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 33 [00:01:14.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info 34 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Info 35 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info @@ -234,7 +204,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.ts: +/user/username/projects/myproject/projects/project1/class3.ts: *new* {} FsWatchesRecursive:: @@ -254,60 +224,8 @@ Before checking timeout queue length (0) and running declare class file {} -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 49 [00:01:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Info 50 [00:01:49.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts Info 51 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory @@ -316,56 +234,4 @@ Before checking timeout queue length (0) and running declare class class3 {} -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - After checking timeout queue length (0) and running - -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js index 9739888b1d06d..e5fc9e8e884f5 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js @@ -38,12 +38,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json @@ -117,27 +111,27 @@ Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/ After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/projects/node_modules/@types: +/user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/class1.d.ts: +/user/username/projects/myproject/projects/project1/class1.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: +/user/username/projects/myproject/projects/project2: *new* {} -/user/username/projects/myproject/projects/project1: +/user/username/projects/myproject/projects/project1: *new* {} Info 28 [00:01:07.000] response: @@ -155,30 +149,6 @@ Info 29 [00:01:08.000] request: } Before request -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 30 [00:01:09.000] Search path: /user/username/projects/myproject/projects/project1 Info 31 [00:01:10.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json Info 32 [00:01:11.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json @@ -226,7 +196,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -260,32 +230,6 @@ Before checking timeout queue length (3) and running class class3 {} -PolledWatches:: -/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/node_modules/@types: - {"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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 53 [00:01:45.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info 54 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Info 55 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file @@ -350,7 +294,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -362,7 +306,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.ts: +/user/username/projects/myproject/projects/project1/class3.ts: *new* {} FsWatchesRecursive:: @@ -394,6 +338,10 @@ PolledWatches:: /user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {} @@ -486,7 +434,7 @@ FsWatches:: {} /user/username/projects/myproject/projects/project1/class3.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: @@ -506,68 +454,8 @@ Before checking timeout queue length (0) and running declare class file {} -PolledWatches:: -/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/node_modules/@types: - {"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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} -/user/username/projects/myproject/projects/project1/class3.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/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/node_modules/@types: - {"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: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} -/user/username/projects/myproject/projects/project1/class3.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 92 [00:03:15.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info Info 93 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info Info 94 [00:03:17.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json @@ -601,6 +489,10 @@ FsWatches:: /user/username/projects/myproject/projects/project1/class3.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/projects/project2: {} @@ -666,7 +558,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {"pollingInterval":500} FsWatches:: @@ -710,6 +602,10 @@ PolledWatches:: /user/username/projects/myproject/projects/project1/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class3.d.ts: + {"pollingInterval":500} + FsWatches:: /user/username/projects/myproject/projects/project2/tsconfig.json: {} @@ -802,7 +698,7 @@ FsWatches:: {} /user/username/projects/myproject/projects/project1/class3.ts: {} -/user/username/projects/myproject/projects/project1/class3.d.ts: +/user/username/projects/myproject/projects/project1/class3.d.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js index c2f5ead6a4383..27fcfc607dc0d 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js @@ -38,12 +38,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json @@ -116,27 +110,27 @@ Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/ After request PolledWatches:: -/user/username/projects/myproject/projects/project2/node_modules/@types: +/user/username/projects/myproject/projects/project2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/projects/node_modules/@types: +/user/username/projects/myproject/projects/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: +/user/username/projects/myproject/projects/project2/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/tsconfig.json: +/user/username/projects/myproject/projects/project1/tsconfig.json: *new* {} -/user/username/projects/myproject/projects/project1/class1.ts: +/user/username/projects/myproject/projects/project1/class1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: +/user/username/projects/myproject/projects/project2: *new* {} -/user/username/projects/myproject/projects/project1: +/user/username/projects/myproject/projects/project1: *new* {} Info 28 [00:01:07.000] response: @@ -154,30 +148,6 @@ Info 29 [00:01:08.000] request: } Before request -PolledWatches:: -/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} - -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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 30 [00:01:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:10.000] Search path: /user/username/projects/myproject/projects/project1 Info 32 [00:01:11.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json @@ -226,7 +196,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/projects/project1/node_modules/@types: +/user/username/projects/myproject/projects/project1/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -237,6 +207,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/projects/project1/class1.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/projects/project2: {} @@ -258,30 +232,6 @@ Before checking timeout queue length (3) and running class class3 {} -PolledWatches:: -/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/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 54 [00:01:46.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json Info 55 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Info 56 [00:01:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info @@ -370,7 +320,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/projects/project1/class3.ts: +/user/username/projects/myproject/projects/project1/class3.ts: *new* {} FsWatchesRecursive:: @@ -390,60 +340,8 @@ Before checking timeout queue length (0) and running declare class file {} -PolledWatches:: -/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/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - After checking timeout queue length (0) and running -PolledWatches:: -/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/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - Info 76 [00:02:36.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Info 77 [00:02:37.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts Info 78 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory @@ -452,56 +350,4 @@ Before checking timeout queue length (0) and running declare class class3 {} -PolledWatches:: -/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/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} - After checking timeout queue length (0) and running - -PolledWatches:: -/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/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/projects/project2/tsconfig.json: - {} -/user/username/projects/myproject/projects/project1/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/projects/project1/class3.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/projects/project2: - {} -/user/username/projects/myproject/projects/project1: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js index 7d1f1228475bb..ca8f45622cfcd 100644 --- a/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js +++ b/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js @@ -152,175 +152,49 @@ export function bar() {} PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 33 [00:01:37.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 34 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 35 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 36 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 37 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 38 [00:01:42.000] Search path: /dummy Info 39 [00:01:43.000] For info: /dummy/dummy.ts :: No config files found. Info 40 [00:01:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -699,13 +573,25 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* +/dummy/node_modules/@types: *new* {"pollingInterval":500} -/dummy/node_modules/@types: + +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/tsconfig-src.json: + {} *new* +/user/username/projects/myproject/src/helpers/functions.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/tsconfig-src.json: @@ -714,6 +600,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject/src: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject/src: {} @@ -737,9 +627,9 @@ FsWatches:: {} /user/username/projects/myproject/src/helpers/functions.ts: {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts: +/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: +/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} FsWatchesRecursive:: @@ -975,7 +865,11 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/dummy/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -987,15 +881,25 @@ FsWatches:: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: +/user/username/projects/myproject/indirect3/tsconfig.json: *new* {} -/user/username/projects/myproject/target/src/main.d.ts: +/user/username/projects/myproject/target/src/main.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/tsconfig-src.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/indirect3: +/user/username/projects/myproject/indirect3: *new* {} -/user/username/projects/myproject/target: +/user/username/projects/myproject/target: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/src: {} Info 210 [00:06:52.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json @@ -1096,13 +1000,13 @@ FsWatches:: {} /user/username/projects/myproject/target/src/main.d.ts: {} -/user/username/projects/myproject/target/src/main.d.ts.map: +/user/username/projects/myproject/target/src/main.d.ts.map: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} FsWatchesRecursive:: @@ -1110,7 +1014,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/target: {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 248 [00:07:30.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js index 945122f370440..594b7d7fd4bfa 100644 --- a/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js +++ b/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js @@ -208,207 +208,53 @@ export function bar() {} PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/tsconfig-indirect1.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/tsconfig-indirect2.json: +/user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 37 [00:01:53.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 38 [00:01:54.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 39 [00:01:55.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 40 [00:01:56.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 41 [00:01:57.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 42 [00:01:58.000] Search path: /dummy Info 43 [00:01:59.000] For info: /dummy/dummy.ts :: No config files found. Info 44 [00:02:00.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -867,13 +713,29 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* +/dummy/node_modules/@types: *new* {"pollingInterval":500} -/dummy/node_modules/@types: + +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/tsconfig-indirect1.json: + {} *new* +/user/username/projects/myproject/tsconfig-src.json: + {} *new* +/user/username/projects/myproject/tsconfig-indirect2.json: + {} *new* +/user/username/projects/myproject/src/helpers/functions.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/tsconfig-indirect1.json: @@ -886,6 +748,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject/src: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject/src: {} @@ -995,13 +861,13 @@ FsWatches:: {} /user/username/projects/myproject/src/helpers/functions.ts: {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/indirect1/main.ts: *new* {} -/user/username/projects/myproject/indirect2/main.ts: +/user/username/projects/myproject/indirect2/main.ts: *new* {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts: +/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: +/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} FsWatchesRecursive:: @@ -1371,7 +1237,11 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/dummy/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -1383,15 +1253,33 @@ FsWatches:: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: +/user/username/projects/myproject/indirect3/tsconfig.json: *new* {} -/user/username/projects/myproject/target/src/main.d.ts: +/user/username/projects/myproject/target/src/main.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/tsconfig-indirect1.json: + {} +/user/username/projects/myproject/tsconfig-src.json: + {} +/user/username/projects/myproject/tsconfig-indirect2.json: + {} +/user/username/projects/myproject/indirect1/main.ts: + {} +/user/username/projects/myproject/indirect2/main.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/indirect3: +/user/username/projects/myproject/indirect3: *new* {} -/user/username/projects/myproject/target: +/user/username/projects/myproject/target: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/src: {} Info 284 [00:08:30.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json @@ -1610,21 +1498,21 @@ FsWatches:: {} /user/username/projects/myproject/target/src/main.d.ts: {} -/user/username/projects/myproject/target/src/main.d.ts.map: +/user/username/projects/myproject/target/src/main.d.ts.map: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/tsconfig-indirect1.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/tsconfig-indirect2.json: +/user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/indirect1/main.ts: *new* {} -/user/username/projects/myproject/indirect2/main.ts: +/user/username/projects/myproject/indirect2/main.ts: *new* {} FsWatchesRecursive:: @@ -1632,7 +1520,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/target: {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 370 [00:09:56.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js index 0f6c5eb896d80..e4374a6f0dc20 100644 --- a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js +++ b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js @@ -274,12 +274,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:19.000] Search path: /user/username/projects/project/src/common/input Info 3 [00:01:20.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json Info 4 [00:01:21.000] Creating configuration project /user/username/projects/project/src/common/tsconfig.json @@ -346,25 +340,25 @@ Info 28 [00:01:53.000] Projects: /user/username/projects/project/src/common/ After request PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: +/user/username/projects/project/src/common/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: +/user/username/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/project/node_modules/@types: +/user/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: +/user/username/projects/project/src/common/tsconfig.json: *new* {} -/user/username/projects/project/src/common/input/keyboard.test.ts: +/user/username/projects/project/src/common/input/keyboard.test.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/project/src/tsconfig.json: +/user/username/projects/project/src/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/project/src/common: +/user/username/projects/project/src/common: *new* {} Info 28 [00:01:54.000] response: @@ -382,28 +376,6 @@ Info 29 [00:01:55.000] request: } Before request -PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: - {} -/user/username/projects/project/src/common/input/keyboard.test.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/project/src/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} - Info 30 [00:01:56.000] Search path: /user/username/projects/project/src Info 31 [00:01:57.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json Info 32 [00:01:58.000] Loading configured project /user/username/projects/project/src/tsconfig.json @@ -499,13 +471,13 @@ FsWatches:: {} /user/username/projects/project/src/tsconfig.json: {} -/user/username/projects/project/out/input/keyboard.d.ts: +/user/username/projects/project/out/input/keyboard.d.ts: *new* {} FsWatchesRecursive:: /user/username/projects/project/src/common: {} -/user/username/projects/project/src: +/user/username/projects/project/src: *new* {} Info 48 [00:02:25.000] response: @@ -525,32 +497,6 @@ Info 49 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: - {} -/user/username/projects/project/src/common/input/keyboard.test.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/project/src/tsconfig.json: - {} -/user/username/projects/project/out/input/keyboard.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} -/user/username/projects/project/src: - {} - Info 50 [00:02:27.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json Info 51 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts.map 500 undefined WatchType: Closed Script info Info 52 [00:02:29.000] Finding references to /user/username/projects/project/out/input/keyboard.d.ts position 24 in project /user/username/projects/project/src/tsconfig.json @@ -579,7 +525,7 @@ FsWatches:: {} /user/username/projects/project/out/input/keyboard.d.ts: {} -/user/username/projects/project/out/input/keyboard.d.ts.map: +/user/username/projects/project/out/input/keyboard.d.ts.map: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js index 71f49b75146b2..5e2b798d4cf04 100644 --- a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js @@ -274,12 +274,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:19.000] Search path: /user/username/projects/project/src/common/input Info 3 [00:01:20.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json Info 4 [00:01:21.000] Creating configuration project /user/username/projects/project/src/common/tsconfig.json @@ -346,25 +340,25 @@ Info 28 [00:01:53.000] Projects: /user/username/projects/project/src/common/ After request PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: +/user/username/projects/project/src/common/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: +/user/username/projects/project/src/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/project/node_modules/@types: +/user/username/projects/project/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: +/user/username/projects/project/src/common/tsconfig.json: *new* {} -/user/username/projects/project/src/common/input/keyboard.test.ts: +/user/username/projects/project/src/common/input/keyboard.test.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/project/src/tsconfig.json: +/user/username/projects/project/src/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/project/src/common: +/user/username/projects/project/src/common: *new* {} Info 28 [00:01:54.000] response: @@ -382,28 +376,6 @@ Info 29 [00:01:55.000] request: } Before request -PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: - {} -/user/username/projects/project/src/common/input/keyboard.test.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/project/src/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} - Info 30 [00:01:56.000] Search path: /user/username/projects/project/src Info 31 [00:01:57.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json Info 32 [00:01:58.000] Loading configured project /user/username/projects/project/src/tsconfig.json @@ -501,7 +473,7 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/project/src/common: {} -/user/username/projects/project/src: +/user/username/projects/project/src: *new* {} Info 47 [00:02:24.000] response: @@ -521,30 +493,6 @@ Info 48 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: - {} -/user/username/projects/project/src/common/input/keyboard.test.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/project/src/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} -/user/username/projects/project/src: - {} - Info 49 [00:02:26.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json Info 50 [00:02:27.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/tsconfig.json Info 51 [00:02:28.000] Search path: /user/username/projects/project/src/common/input @@ -559,30 +507,6 @@ Info 59 [00:02:36.000] Search path: /user/username/projects/project/src/common Info 60 [00:02:37.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json After request -PolledWatches:: -/user/username/projects/project/src/common/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/src/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/project/src/common/tsconfig.json: - {} -/user/username/projects/project/src/common/input/keyboard.test.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/project/src/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/project/src/common: - {} -/user/username/projects/project/src: - {} - Info 61 [00:02:38.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js index 5a3d6f4064dc0..874507c793f64 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js @@ -179,191 +179,51 @@ export function bar() {} PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/own/main.ts: +/user/username/projects/myproject/own/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 36 [00:01:44.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 37 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 38 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 39 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 40 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 41 [00:01:49.000] Search path: /dummy Info 42 [00:01:50.000] For info: /dummy/dummy.ts :: No config files found. Info 43 [00:01:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -785,13 +645,27 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* +/dummy/node_modules/@types: *new* {"pollingInterval":500} -/dummy/node_modules/@types: + +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/own/main.ts: + {} *new* +/user/username/projects/myproject/tsconfig-src.json: + {} *new* +/user/username/projects/myproject/src/helpers/functions.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/own/main.ts: @@ -802,6 +676,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject/src: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject/src: {} @@ -838,9 +716,9 @@ FsWatches:: {} /user/username/projects/myproject/src/helpers/functions.ts: {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts: +/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: +/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} FsWatchesRecursive:: @@ -1125,7 +1003,11 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/dummy/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -1137,15 +1019,27 @@ FsWatches:: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: +/user/username/projects/myproject/indirect3/tsconfig.json: *new* {} -/user/username/projects/myproject/target/src/main.d.ts: +/user/username/projects/myproject/target/src/main.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/own/main.ts: + {} +/user/username/projects/myproject/tsconfig-src.json: {} FsWatchesRecursive:: -/user/username/projects/myproject/indirect3: +/user/username/projects/myproject/indirect3: *new* {} -/user/username/projects/myproject/target: +/user/username/projects/myproject/target: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/src: {} Info 233 [00:07:19.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json @@ -1279,15 +1173,15 @@ FsWatches:: {} /user/username/projects/myproject/target/src/main.d.ts: {} -/user/username/projects/myproject/target/src/main.d.ts.map: +/user/username/projects/myproject/target/src/main.d.ts.map: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/own/main.ts: +/user/username/projects/myproject/own/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} FsWatchesRecursive:: @@ -1295,7 +1189,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/target: {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 285 [00:08:11.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js index 8452723d3d269..a8d442a81cd9b 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js @@ -238,239 +238,57 @@ bar; PolledWatches:: -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/own/main.ts: +/user/username/projects/myproject/own/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/tsconfig-indirect1.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/tsconfig-indirect2.json: +/user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/indirect1/main.ts: *new* {} -/user/username/projects/myproject/src/helpers/functions.ts: +/user/username/projects/myproject/src/helpers/functions.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} After request -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/indirect1/main.ts: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 41 [00:02:01.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/indirect1/main.ts: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 42 [00:02:02.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/indirect1/main.ts: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/indirect1/main.ts: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 43 [00:02:03.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/indirect1/main.ts: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/indirect1/main.ts: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 44 [00:02:04.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Info 45 [00:02:05.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/tsconfig.json: - {} -/user/username/projects/myproject/own/main.ts: - {} -/user/username/projects/myproject/tsconfig-indirect1.json: - {} -/user/username/projects/myproject/tsconfig-src.json: - {} -/user/username/projects/myproject/tsconfig-indirect2.json: - {} -/user/username/projects/myproject/indirect1/main.ts: - {} -/user/username/projects/myproject/src/helpers/functions.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/src: - {} - Info 46 [00:02:06.000] Search path: /dummy Info 47 [00:02:07.000] For info: /dummy/dummy.ts :: No config files found. Info 48 [00:02:08.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* @@ -982,13 +800,33 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} *new* +/dummy/node_modules/@types: *new* {"pollingInterval":500} -/dummy/node_modules/@types: + +PolledWatches *deleted*:: +/user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} +/user/username/projects/myproject/tsconfig.json: + {} *new* +/user/username/projects/myproject/own/main.ts: + {} *new* +/user/username/projects/myproject/tsconfig-indirect1.json: + {} *new* +/user/username/projects/myproject/tsconfig-src.json: + {} *new* +/user/username/projects/myproject/tsconfig-indirect2.json: + {} *new* +/user/username/projects/myproject/indirect1/main.ts: + {} *new* +/user/username/projects/myproject/src/helpers/functions.ts: + {} *new* + +FsWatches *deleted*:: /user/username/projects/myproject/tsconfig.json: {} /user/username/projects/myproject/own/main.ts: @@ -1005,6 +843,10 @@ FsWatches:: {} FsWatchesRecursive:: +/user/username/projects/myproject/src: + {} *new* + +FsWatchesRecursive *deleted*:: /user/username/projects/myproject/src: {} @@ -1134,11 +976,11 @@ FsWatches:: {} /user/username/projects/myproject/src/helpers/functions.ts: {} -/user/username/projects/myproject/indirect2/main.ts: +/user/username/projects/myproject/indirect2/main.ts: *new* {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts: +/user/username/projects/myproject/target/src/helpers/functions.d.ts: *new* {} -/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: +/user/username/projects/myproject/target/src/helpers/functions.d.ts.map: *new* {} FsWatchesRecursive:: @@ -1524,7 +1366,11 @@ Before request PolledWatches:: /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect3/node_modules/@types: +/user/username/projects/myproject/indirect3/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/dummy/node_modules/@types: {"pollingInterval":500} FsWatches:: @@ -1536,15 +1382,35 @@ FsWatches:: {} /user/username/projects/myproject/target/src/helpers/functions.d.ts.map: {} -/user/username/projects/myproject/indirect3/tsconfig.json: +/user/username/projects/myproject/indirect3/tsconfig.json: *new* {} -/user/username/projects/myproject/target/src/main.d.ts: +/user/username/projects/myproject/target/src/main.d.ts: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/tsconfig.json: + {} +/user/username/projects/myproject/own/main.ts: + {} +/user/username/projects/myproject/tsconfig-indirect1.json: + {} +/user/username/projects/myproject/tsconfig-src.json: + {} +/user/username/projects/myproject/tsconfig-indirect2.json: + {} +/user/username/projects/myproject/indirect1/main.ts: + {} +/user/username/projects/myproject/indirect2/main.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/indirect3: +/user/username/projects/myproject/indirect3: *new* {} -/user/username/projects/myproject/target: +/user/username/projects/myproject/target: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/src: {} Info 317 [00:09:07.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json @@ -1805,23 +1671,23 @@ FsWatches:: {} /user/username/projects/myproject/target/src/main.d.ts: {} -/user/username/projects/myproject/target/src/main.d.ts.map: +/user/username/projects/myproject/target/src/main.d.ts.map: *new* {} -/user/username/projects/myproject/src/main.ts: +/user/username/projects/myproject/src/main.ts: *new* {} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {} -/user/username/projects/myproject/own/main.ts: +/user/username/projects/myproject/own/main.ts: *new* {} -/user/username/projects/myproject/tsconfig-indirect1.json: +/user/username/projects/myproject/tsconfig-indirect1.json: *new* {} -/user/username/projects/myproject/tsconfig-src.json: +/user/username/projects/myproject/tsconfig-src.json: *new* {} -/user/username/projects/myproject/tsconfig-indirect2.json: +/user/username/projects/myproject/tsconfig-indirect2.json: *new* {} -/user/username/projects/myproject/indirect1/main.ts: +/user/username/projects/myproject/indirect1/main.ts: *new* {} -/user/username/projects/myproject/indirect2/main.ts: +/user/username/projects/myproject/indirect2/main.ts: *new* {} FsWatchesRecursive:: @@ -1829,7 +1695,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/target: {} -/user/username/projects/myproject/src: +/user/username/projects/myproject/src: *new* {} Info 423 [00:10:53.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js index 6833b59cb152d..667284768055a 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js @@ -46,12 +46,6 @@ shared.foo.bar(); export const foo = { bar: () => { } }; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json @@ -134,29 +128,29 @@ Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconf After request PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: +/user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: +/user/username/projects/solution/api/tsconfig.json: *new* {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/shared/tsconfig.json: *new* {} -/user/username/projects/solution/shared/src/index.ts: +/user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/api/src: +/user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/shared/src: *new* {} -/user/username/projects/solution/shared: +/user/username/projects/solution/shared: *new* {} Info 32 [00:01:25.000] response: @@ -176,32 +170,6 @@ Info 33 [00:01:26.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/api/tsconfig.json: - {} -/user/username/projects/solution/shared/tsconfig.json: - {} -/user/username/projects/solution/shared/src/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/api/src: - {} -/user/username/projects/solution/shared/src: - {} -/user/username/projects/solution/shared: - {} - Info 34 [00:01:27.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json Info 35 [00:01:28.000] Search path: /user/username/projects/solution/shared/src Info 36 [00:01:29.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json @@ -306,9 +274,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/shared/node_modules/@types: +/user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -322,9 +290,9 @@ FsWatches:: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/src/app.ts: +/user/username/projects/solution/app/src/app.ts: *new* {} FsWatchesRecursive:: @@ -334,7 +302,7 @@ FsWatchesRecursive:: {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: +/user/username/projects/solution/app/src: *new* {} Info 79 [00:02:12.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js index 24b72d13d446f..15fe44f2aa919 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js @@ -47,12 +47,6 @@ const local = { bar: () => { } }; export const foo = local; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json @@ -135,29 +129,29 @@ Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconf After request PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: +/user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: +/user/username/projects/solution/api/tsconfig.json: *new* {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/shared/tsconfig.json: *new* {} -/user/username/projects/solution/shared/src/index.ts: +/user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/api/src: +/user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/shared/src: *new* {} -/user/username/projects/solution/shared: +/user/username/projects/solution/shared: *new* {} Info 32 [00:01:25.000] response: @@ -177,32 +171,6 @@ Info 33 [00:01:26.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/api/tsconfig.json: - {} -/user/username/projects/solution/shared/tsconfig.json: - {} -/user/username/projects/solution/shared/src/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/api/src: - {} -/user/username/projects/solution/shared/src: - {} -/user/username/projects/solution/shared: - {} - Info 34 [00:01:27.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json Info 35 [00:01:28.000] Search path: /user/username/projects/solution/shared/src Info 36 [00:01:29.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json @@ -235,7 +203,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/shared/node_modules/@types: +/user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js index a1cf9098dfa72..3bf6380416ab4 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js @@ -46,12 +46,6 @@ shared.dog(); export const dog = () => { }; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json @@ -134,29 +128,29 @@ Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconf After request PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: +/user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: +/user/username/projects/solution/api/tsconfig.json: *new* {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/shared/tsconfig.json: *new* {} -/user/username/projects/solution/shared/src/index.ts: +/user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/api/src: +/user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/shared/src: *new* {} -/user/username/projects/solution/shared: +/user/username/projects/solution/shared: *new* {} Info 32 [00:01:25.000] response: @@ -176,32 +170,6 @@ Info 33 [00:01:26.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/api/tsconfig.json: - {} -/user/username/projects/solution/shared/tsconfig.json: - {} -/user/username/projects/solution/shared/src/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/api/src: - {} -/user/username/projects/solution/shared/src: - {} -/user/username/projects/solution/shared: - {} - Info 34 [00:01:27.000] Finding references to /user/username/projects/solution/api/src/server.ts position 52 in project /user/username/projects/solution/api/tsconfig.json Info 35 [00:01:28.000] Search path: /user/username/projects/solution/shared/src Info 36 [00:01:29.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json @@ -306,9 +274,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/shared/node_modules/@types: +/user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -322,9 +290,9 @@ FsWatches:: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/src/app.ts: +/user/username/projects/solution/app/src/app.ts: *new* {} FsWatchesRecursive:: @@ -334,7 +302,7 @@ FsWatchesRecursive:: {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: +/user/username/projects/solution/app/src: *new* {} Info 79 [00:02:12.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js index 2e9711e253961..5d42c85160bd9 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js @@ -48,12 +48,6 @@ instance.fly(); export const foo = class { fly() {} }; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json @@ -136,29 +130,29 @@ Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconf After request PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: +/user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: +/user/username/projects/solution/api/tsconfig.json: *new* {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/shared/tsconfig.json: *new* {} -/user/username/projects/solution/shared/src/index.ts: +/user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/api/src: +/user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/shared/src: *new* {} -/user/username/projects/solution/shared: +/user/username/projects/solution/shared: *new* {} Info 32 [00:01:25.000] response: @@ -178,32 +172,6 @@ Info 33 [00:01:26.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/api/tsconfig.json: - {} -/user/username/projects/solution/shared/tsconfig.json: - {} -/user/username/projects/solution/shared/src/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/api/src: - {} -/user/username/projects/solution/shared/src: - {} -/user/username/projects/solution/shared: - {} - Info 34 [00:01:27.000] Finding references to /user/username/projects/solution/api/src/server.ts position 89 in project /user/username/projects/solution/api/tsconfig.json Info 35 [00:01:28.000] Search path: /user/username/projects/solution/shared/src Info 36 [00:01:29.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json @@ -308,9 +276,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/shared/node_modules/@types: +/user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -324,9 +292,9 @@ FsWatches:: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/src/app.ts: +/user/username/projects/solution/app/src/app.ts: *new* {} FsWatchesRecursive:: @@ -336,7 +304,7 @@ FsWatchesRecursive:: {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: +/user/username/projects/solution/app/src: *new* {} Info 79 [00:02:12.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js index f6aecbb9553ae..b27ceb8642a41 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js @@ -46,12 +46,6 @@ shared.foo.baz; export const foo = { baz: "BAZ" }; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json @@ -134,29 +128,29 @@ Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconf After request PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: +/user/username/projects/solution/api/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/api/tsconfig.json: +/user/username/projects/solution/api/tsconfig.json: *new* {} -/user/username/projects/solution/shared/tsconfig.json: +/user/username/projects/solution/shared/tsconfig.json: *new* {} -/user/username/projects/solution/shared/src/index.ts: +/user/username/projects/solution/shared/src/index.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/solution/tsconfig.json: +/user/username/projects/solution/tsconfig.json: *new* {} FsWatchesRecursive:: -/user/username/projects/solution/api/src: +/user/username/projects/solution/api/src: *new* {} -/user/username/projects/solution/shared/src: +/user/username/projects/solution/shared/src: *new* {} -/user/username/projects/solution/shared: +/user/username/projects/solution/shared: *new* {} Info 32 [00:01:25.000] response: @@ -176,32 +170,6 @@ Info 33 [00:01:26.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/api/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/api/tsconfig.json: - {} -/user/username/projects/solution/shared/tsconfig.json: - {} -/user/username/projects/solution/shared/src/index.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/solution/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/solution/api/src: - {} -/user/username/projects/solution/shared/src: - {} -/user/username/projects/solution/shared: - {} - Info 34 [00:01:27.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json Info 35 [00:01:28.000] Search path: /user/username/projects/solution/shared/src Info 36 [00:01:29.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json @@ -306,9 +274,9 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/solution/node_modules/@types: {"pollingInterval":500} -/user/username/projects/solution/shared/node_modules/@types: +/user/username/projects/solution/shared/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/app/node_modules/@types: +/user/username/projects/solution/app/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -322,9 +290,9 @@ FsWatches:: {} /user/username/projects/solution/tsconfig.json: {} -/user/username/projects/solution/app/tsconfig.json: +/user/username/projects/solution/app/tsconfig.json: *new* {} -/user/username/projects/solution/app/src/app.ts: +/user/username/projects/solution/app/src/app.ts: *new* {} FsWatchesRecursive:: @@ -334,7 +302,7 @@ FsWatchesRecursive:: {} /user/username/projects/solution/shared: {} -/user/username/projects/solution/app/src: +/user/username/projects/solution/app/src: *new* {} Info 79 [00:02:12.000] response: diff --git a/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js b/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js index a54da7d53c6c8..1474f1f3a8699 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js @@ -95,12 +95,6 @@ export const noCoreRef2Const = 10; {"compilerOptions":{"composite":true}} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:55.000] Search path: /user/username/projects/myproject/main/src Info 3 [00:01:56.000] For info: /user/username/projects/myproject/main/src/file1.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:57.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -359,63 +353,63 @@ Info 65 [00:03:03.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/core/tsconfig.json: +/user/username/projects/myproject/core/tsconfig.json: *new* {} -/user/username/projects/myproject/indirect/tsconfig.json: +/user/username/projects/myproject/indirect/tsconfig.json: *new* {} -/user/username/projects/myproject/coreRef1/tsconfig.json: +/user/username/projects/myproject/coreRef1/tsconfig.json: *new* {} -/user/username/projects/myproject/noCoreRef1/tsconfig.json: +/user/username/projects/myproject/noCoreRef1/tsconfig.json: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: +/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: *new* {} -/user/username/projects/myproject/coreRef2/tsconfig.json: +/user/username/projects/myproject/coreRef2/tsconfig.json: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: +/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: *new* {} -/user/username/projects/myproject/coreRef3/tsconfig.json: +/user/username/projects/myproject/coreRef3/tsconfig.json: *new* {} -/user/username/projects/myproject/refToCoreRef3/tsconfig.json: +/user/username/projects/myproject/refToCoreRef3/tsconfig.json: *new* {} -/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: +/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: *new* {} -/user/username/projects/myproject/noCoreRef2/tsconfig.json: +/user/username/projects/myproject/noCoreRef2/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/core: +/user/username/projects/myproject/core: *new* {} -/user/username/projects/myproject/indirect: +/user/username/projects/myproject/indirect: *new* {} -/user/username/projects/myproject/coreRef1: +/user/username/projects/myproject/coreRef1: *new* {} -/user/username/projects/myproject/noCoreRef1: +/user/username/projects/myproject/noCoreRef1: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad1: +/user/username/projects/myproject/indirectDisabledChildLoad1: *new* {} -/user/username/projects/myproject/coreRef2: +/user/username/projects/myproject/coreRef2: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad2: +/user/username/projects/myproject/indirectDisabledChildLoad2: *new* {} -/user/username/projects/myproject/coreRef3: +/user/username/projects/myproject/coreRef3: *new* {} -/user/username/projects/myproject/refToCoreRef3: +/user/username/projects/myproject/refToCoreRef3: *new* {} -/user/username/projects/myproject/indirectNoCoreRef: +/user/username/projects/myproject/indirectNoCoreRef: *new* {} -/user/username/projects/myproject/noCoreRef2: +/user/username/projects/myproject/noCoreRef2: *new* {} Info 65 [00:03:04.000] response: @@ -433,66 +427,6 @@ Info 66 [00:03:05.000] request: } Before request -PolledWatches:: -/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/core/tsconfig.json: - {} -/user/username/projects/myproject/indirect/tsconfig.json: - {} -/user/username/projects/myproject/coreRef1/tsconfig.json: - {} -/user/username/projects/myproject/noCoreRef1/tsconfig.json: - {} -/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: - {} -/user/username/projects/myproject/coreRef2/tsconfig.json: - {} -/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: - {} -/user/username/projects/myproject/coreRef3/tsconfig.json: - {} -/user/username/projects/myproject/refToCoreRef3/tsconfig.json: - {} -/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: - {} -/user/username/projects/myproject/noCoreRef2/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/core: - {} -/user/username/projects/myproject/indirect: - {} -/user/username/projects/myproject/coreRef1: - {} -/user/username/projects/myproject/noCoreRef1: - {} -/user/username/projects/myproject/indirectDisabledChildLoad1: - {} -/user/username/projects/myproject/coreRef2: - {} -/user/username/projects/myproject/indirectDisabledChildLoad2: - {} -/user/username/projects/myproject/coreRef3: - {} -/user/username/projects/myproject/refToCoreRef3: - {} -/user/username/projects/myproject/indirectNoCoreRef: - {} -/user/username/projects/myproject/noCoreRef2: - {} - Info 67 [00:03:06.000] Search path: /user/username/projects/myproject/core/src Info 68 [00:03:07.000] For info: /user/username/projects/myproject/core/src/file1.ts :: Config file name: /user/username/projects/myproject/core/tsconfig.json Info 69 [00:03:08.000] Creating configuration project /user/username/projects/myproject/core/tsconfig.json @@ -536,7 +470,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/core/node_modules/@types: +/user/username/projects/myproject/core/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -610,68 +544,6 @@ Info 82 [00:03:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/core/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/core/tsconfig.json: - {} -/user/username/projects/myproject/indirect/tsconfig.json: - {} -/user/username/projects/myproject/coreRef1/tsconfig.json: - {} -/user/username/projects/myproject/noCoreRef1/tsconfig.json: - {} -/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json: - {} -/user/username/projects/myproject/coreRef2/tsconfig.json: - {} -/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json: - {} -/user/username/projects/myproject/coreRef3/tsconfig.json: - {} -/user/username/projects/myproject/refToCoreRef3/tsconfig.json: - {} -/user/username/projects/myproject/indirectNoCoreRef/tsconfig.json: - {} -/user/username/projects/myproject/noCoreRef2/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/core: - {} -/user/username/projects/myproject/indirect: - {} -/user/username/projects/myproject/coreRef1: - {} -/user/username/projects/myproject/noCoreRef1: - {} -/user/username/projects/myproject/indirectDisabledChildLoad1: - {} -/user/username/projects/myproject/coreRef2: - {} -/user/username/projects/myproject/indirectDisabledChildLoad2: - {} -/user/username/projects/myproject/coreRef3: - {} -/user/username/projects/myproject/refToCoreRef3: - {} -/user/username/projects/myproject/indirectNoCoreRef: - {} -/user/username/projects/myproject/noCoreRef2: - {} - Info 83 [00:03:33.000] Finding references to /user/username/projects/myproject/core/src/file1.ts position 13 in project /user/username/projects/myproject/core/tsconfig.json Info 84 [00:03:34.000] Creating configuration project /user/username/projects/myproject/indirect/tsconfig.json Info 85 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/src/file1.ts 500 undefined WatchType: Closed Script info @@ -803,19 +675,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/core/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/indirect/node_modules/@types: +/user/username/projects/myproject/indirect/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/coreRef1/node_modules/@types: +/user/username/projects/myproject/coreRef1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types: +/user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types: +/user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/refToCoreRef3/node_modules/@types: +/user/username/projects/myproject/refToCoreRef3/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/coreRef3/node_modules/@types: +/user/username/projects/myproject/coreRef3/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/core/src/file1.d.ts: +/user/username/projects/myproject/core/src/file1.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -845,17 +717,17 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/indirect/src/file1.ts: +/user/username/projects/myproject/indirect/src/file1.ts: *new* {} -/user/username/projects/myproject/coreRef1/src/file1.ts: +/user/username/projects/myproject/coreRef1/src/file1.ts: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts: +/user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts: *new* {} -/user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts: +/user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts: *new* {} -/user/username/projects/myproject/refToCoreRef3/src/file1.ts: +/user/username/projects/myproject/refToCoreRef3/src/file1.ts: *new* {} -/user/username/projects/myproject/coreRef3/src/file1.ts: +/user/username/projects/myproject/coreRef3/src/file1.ts: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js b/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js index 76c580f193452..70c5b85718cf7 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js @@ -54,12 +54,6 @@ testCompositeFunction('why hello there', 42); //// [/user/username/projects/myproject/node_modules/emit-composite] symlink(/user/username/projects/myproject/packages/emit-composite) -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:45.000] Search path: /user/username/projects/myproject/packages/consumer/src Info 3 [00:00:46.000] For info: /user/username/projects/myproject/packages/consumer/src/index.ts :: Config file name: /user/username/projects/myproject/packages/consumer/tsconfig.json Info 4 [00:00:47.000] Creating configuration project /user/username/projects/myproject/packages/consumer/tsconfig.json @@ -155,39 +149,39 @@ Info 42 [00:01:30.000] Projects: /user/username/projects/myproject/packages/ After request PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: +/user/username/projects/myproject/packages/consumer/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: +/user/username/projects/myproject/packages/node_modules: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: +/user/username/projects/myproject/packages/consumer/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: +/user/username/projects/myproject/packages/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: +/user/username/projects/myproject/packages/consumer/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: +/user/username/projects/myproject/packages/emit-composite/tsconfig.json: *new* {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: +/user/username/projects/myproject/packages/emit-composite/src/index.js: *new* {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: +/user/username/projects/myproject/packages/emit-composite/src/testModule.js: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -/user/username/projects/myproject/packages/emit-composite/package.json: +/user/username/projects/myproject/packages/emit-composite/package.json: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: +/user/username/projects/myproject/packages/consumer/src: *new* {} -/user/username/projects/myproject/packages/emit-composite/src: +/user/username/projects/myproject/packages/emit-composite/src: *new* {} -/user/username/projects/myproject/packages/emit-composite: +/user/username/projects/myproject/packages/emit-composite: *new* {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} Info 42 [00:01:31.000] response: @@ -208,316 +202,28 @@ Info 43 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} - After request -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} - Info 44 [00:01:33.000] response: { "responseRequired": false } Before checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} - Info 45 [00:01:34.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/consumer/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} - Info 46 [00:01:35.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/consumer/src/index.ts","diagnostics":[{"start":{"line":3,"offset":42},"end":{"line":3,"offset":44},"text":"Expected 1 arguments, but got 2.","code":2554,"category":"error"}]}} Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} - Before running immediate callbacks and checking length (1) -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} - Info 47 [00:01:36.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/consumer/src/index.ts","diagnostics":[]}} Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) - -PolledWatches:: -/user/username/projects/myproject/packages/consumer/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules: - {"pollingInterval":500} -/user/username/projects/myproject/packages/consumer/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/packages/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/packages/consumer/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/tsconfig.json: - {} -/user/username/projects/myproject/packages/emit-composite/src/index.js: - {} -/user/username/projects/myproject/packages/emit-composite/src/testModule.js: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/packages/emit-composite/package.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/packages/consumer/src: - {} -/user/username/projects/myproject/packages/emit-composite/src: - {} -/user/username/projects/myproject/packages/emit-composite: - {} -/user/username/projects/myproject/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js b/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js index 3351291ac331c..be3d34d65c7ff 100644 --- a/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js +++ b/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js @@ -55,12 +55,6 @@ interface Array { length: number; [n: number]: T; } } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:36.000] Search path: /user/username/projects/solution/compiler Info 3 [00:00:37.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json Info 4 [00:00:38.000] Creating configuration project /user/username/projects/solution/compiler/tsconfig.json @@ -110,21 +104,19 @@ Info 18 [00:00:57.000] Projects: /user/username/projects/solution/compiler/t After request PolledWatches:: -/user/username/projects/solution/compiler/node_modules/@types: +/user/username/projects/solution/compiler/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: +/user/username/projects/solution/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/solution/compiler/tsconfig.json: +/user/username/projects/solution/compiler/tsconfig.json: *new* {} -/user/username/projects/solution/compiler/types.ts: +/user/username/projects/solution/compiler/types.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} -FsWatchesRecursive:: - Info 18 [00:00:58.000] response: { "responseRequired": false @@ -142,41 +134,9 @@ Info 19 [00:00:59.000] request: } Before request -PolledWatches:: -/user/username/projects/solution/compiler/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/compiler/tsconfig.json: - {} -/user/username/projects/solution/compiler/types.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 20 [00:01:00.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json After request -PolledWatches:: -/user/username/projects/solution/compiler/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/solution/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/solution/compiler/tsconfig.json: - {} -/user/username/projects/solution/compiler/types.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 21 [00:01:01.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js index 68bc077c1b299..a6dc94e28e89b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -523,32 +479,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:11.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -583,32 +513,6 @@ Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/ran Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:39.000] request: { "command": "rename", @@ -622,60 +526,8 @@ Info 54 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:40.000] response: { "response": { @@ -737,60 +589,8 @@ Info 56 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:42.000] response: { "response": { @@ -852,60 +652,8 @@ Info 58 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:44.000] response: { "response": { @@ -967,60 +715,8 @@ Info 60 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:46.000] response: { "response": { @@ -1082,60 +778,8 @@ Info 62 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:48.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js index daaa1c3a87bc5..c7a55e8ddd744 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -534,62 +490,10 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:14.000] response: { "response": { @@ -651,60 +555,8 @@ Info 52 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:16.000] response: { "response": { @@ -766,60 +618,8 @@ Info 54 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] response: { "response": { @@ -881,60 +681,8 @@ Info 56 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:20.000] response: { "response": { @@ -996,60 +744,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { 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 d9c04d37d54e9..670a52d630a23 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 @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -268,19 +262,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -298,22 +292,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -366,7 +344,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -374,13 +352,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -400,28 +378,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -432,7 +388,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -534,6 +490,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/dependency/tsconfig.json: {} @@ -541,7 +501,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -573,7 +533,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -643,60 +603,8 @@ Info 57 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:21.000] response: { "response": { @@ -758,60 +666,8 @@ Info 59 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:23.000] response: { "response": { @@ -873,60 +729,8 @@ Info 61 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:25.000] response: { "response": { @@ -988,60 +792,8 @@ Info 63 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:27.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 65 [00:02:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 67 [00:02:31.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 68 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:02:42.000] Search path: /user/username/projects/myproject/random Info 71 [00:02:43.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1250,6 +948,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1271,32 +973,6 @@ Info 73 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 75 [00:02:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:02:59.000] Files (2) @@ -1330,7 +1006,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1354,34 +1030,6 @@ Info 76 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 78 [00:03:11.000] Files (2) @@ -1415,7 +1063,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1439,36 +1087,6 @@ Info 79 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 81 [00:03:20.000] Search path: /user/username/projects/myproject/random Info 82 [00:03:21.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1511,16 +1129,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 98 [00:03:43.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js index 85e008073426c..a1959323ed559 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -545,6 +501,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -563,7 +523,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -643,60 +603,8 @@ Info 54 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:16.000] response: { "response": { @@ -758,60 +666,8 @@ Info 56 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:18.000] response: { "response": { @@ -873,60 +729,8 @@ Info 58 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:20.000] response: { "response": { @@ -988,60 +792,8 @@ Info 60 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:22.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 62 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:26.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 65 [00:02:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:37.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1249,6 +947,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1270,30 +974,6 @@ Info 71 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 73 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 73 [00:02:55.000] Files (2) @@ -1325,7 +1005,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1349,32 +1029,6 @@ Info 74 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 76 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 76 [00:03:07.000] Files (2) @@ -1406,7 +1060,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1430,34 +1084,6 @@ Info 77 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 79 [00:03:16.000] Search path: /user/username/projects/myproject/random Info 80 [00:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1498,16 +1124,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:37.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js index ecd3dd53ff905..dbf0043bb7522 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -268,19 +262,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -298,22 +292,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -366,7 +344,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -374,13 +352,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -400,28 +378,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -432,7 +388,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -510,56 +466,8 @@ Info 43 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:05.000] response: { "response": { @@ -621,56 +529,8 @@ Info 45 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:02:07.000] response: { "response": { @@ -732,56 +592,8 @@ Info 47 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:09.000] response: { "response": { @@ -843,56 +655,8 @@ Info 49 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:11.000] response: { "response": { @@ -952,30 +716,6 @@ Info 51 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 53 [00:02:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 53 [00:02:15.000] Files (2) @@ -1007,7 +747,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1031,32 +771,6 @@ Info 54 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 56 [00:02:26.000] Search path: /user/username/projects/myproject/random Info 57 [00:02:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1093,6 +807,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1114,30 +832,6 @@ Info 59 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 61 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 61 [00:02:43.000] Files (2) @@ -1169,7 +863,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1193,32 +887,6 @@ Info 62 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:55.000] Files (2) @@ -1250,7 +918,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1274,34 +942,6 @@ Info 65 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:03:04.000] Search path: /user/username/projects/myproject/random Info 68 [00:03:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1342,16 +982,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 82 [00:03:25.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index 806fb4068b40c..7e5277c6be2b2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -517,32 +473,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:11.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -577,32 +507,6 @@ Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/ran Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:39.000] request: { "command": "rename", @@ -616,60 +520,8 @@ Info 54 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:40.000] response: { "response": { @@ -731,60 +583,8 @@ Info 56 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:42.000] response: { "response": { @@ -846,60 +646,8 @@ Info 58 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:44.000] response: { "response": { @@ -961,60 +709,8 @@ Info 60 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:46.000] response: { "response": { @@ -1076,60 +772,8 @@ Info 62 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:48.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js index f9461b0a46a23..e148a542e9dd2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -528,62 +484,10 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:14.000] response: { "response": { @@ -645,60 +549,8 @@ Info 52 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:16.000] response: { "response": { @@ -760,60 +612,8 @@ Info 54 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] response: { "response": { @@ -875,60 +675,8 @@ Info 56 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:20.000] response: { "response": { @@ -990,60 +738,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js index 824fe398b8719..f4d56e14a73ad 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -273,19 +267,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -303,22 +297,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +349,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,13 +357,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -405,28 +383,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -438,7 +394,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -448,7 +404,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -534,6 +490,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/dependency/tsconfig.json: {} @@ -572,7 +532,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -642,60 +602,8 @@ Info 54 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] response: { "response": { @@ -757,60 +665,8 @@ Info 56 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:20.000] response: { "response": { @@ -872,60 +728,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { @@ -987,60 +791,8 @@ Info 60 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:24.000] response: { "response": { @@ -1100,32 +852,6 @@ Info 62 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:28.000] Files (2) @@ -1159,7 +885,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1183,34 +909,6 @@ Info 65 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:39.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1249,6 +947,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1270,32 +972,6 @@ Info 70 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 72 [00:02:56.000] Files (2) @@ -1329,7 +1005,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1353,34 +1029,6 @@ Info 73 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:03:08.000] Files (2) @@ -1414,7 +1062,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1438,36 +1086,6 @@ Info 76 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:17.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1509,16 +1127,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:39.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js index 2f1f611131767..28ced090820c5 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -545,6 +501,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -563,7 +523,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -643,60 +603,8 @@ Info 54 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:16.000] response: { "response": { @@ -758,60 +666,8 @@ Info 56 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:18.000] response: { "response": { @@ -873,60 +729,8 @@ Info 58 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:20.000] response: { "response": { @@ -988,60 +792,8 @@ Info 60 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:22.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 62 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:26.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 65 [00:02:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:37.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1250,6 +948,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1271,32 +973,6 @@ Info 70 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 72 [00:02:54.000] Files (2) @@ -1330,7 +1006,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1354,34 +1030,6 @@ Info 73 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:03:06.000] Files (2) @@ -1415,7 +1063,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1439,36 +1087,6 @@ Info 76 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:15.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1510,16 +1128,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:37.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js index be8e384a829c3..fe58427bb209f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -273,19 +267,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -303,22 +297,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +349,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,13 +357,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -405,28 +383,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -438,7 +394,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -448,7 +404,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -518,60 +474,8 @@ Info 44 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:06.000] response: { "response": { @@ -633,60 +537,8 @@ Info 46 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:08.000] response: { "response": { @@ -748,60 +600,8 @@ Info 48 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:10.000] response: { "response": { @@ -863,60 +663,8 @@ Info 50 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:12.000] response: { "response": { @@ -976,32 +724,6 @@ Info 52 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 54 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 54 [00:02:16.000] Files (2) @@ -1035,7 +757,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1059,34 +781,6 @@ Info 55 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:27.000] Search path: /user/username/projects/myproject/random Info 58 [00:02:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1125,6 +819,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1146,32 +844,6 @@ Info 60 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 62 [00:02:44.000] Files (2) @@ -1205,7 +877,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1229,34 +901,6 @@ Info 63 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 65 [00:02:56.000] Files (2) @@ -1290,7 +934,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1314,36 +958,6 @@ Info 66 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:03:05.000] Search path: /user/username/projects/myproject/random Info 69 [00:03:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1385,16 +999,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 84 [00:03:27.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js index 5d8057ec89aa7..e4d1938c3cfef 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -521,60 +477,8 @@ Info 44 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:05.000] response: { "response": { @@ -636,60 +540,8 @@ Info 46 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:07.000] response: { "response": { @@ -751,60 +603,8 @@ Info 48 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:09.000] response: { "response": { @@ -866,60 +666,8 @@ Info 50 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:11.000] response: { "response": { @@ -979,32 +727,6 @@ Info 52 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 54 [00:02:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 54 [00:02:15.000] Files (2) @@ -1038,7 +760,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1062,34 +784,6 @@ Info 55 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:26.000] Search path: /user/username/projects/myproject/random Info 58 [00:02:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1128,6 +822,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1149,32 +847,6 @@ Info 60 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 62 [00:02:43.000] Files (2) @@ -1208,7 +880,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1232,34 +904,6 @@ Info 63 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 65 [00:02:55.000] Files (2) @@ -1293,7 +937,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1317,36 +961,6 @@ Info 66 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:03:04.000] Search path: /user/username/projects/myproject/random Info 69 [00:03:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1388,16 +1002,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 84 [00:03:26.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js index 6f7e6778832b1..cada15bfc72a3 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,120 +480,16 @@ Info 44 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:05.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:02:06.000] request: { "command": "rename", @@ -651,63 +503,11 @@ Info 46 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:09.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -769,60 +569,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -884,60 +632,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -999,60 +695,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1114,60 +758,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js index 467632631802e..257068ccf748f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,60 +480,8 @@ Info 44 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:05.000] response: { "responseRequired": false @@ -595,63 +499,11 @@ Info 46 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:09.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -713,60 +565,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -828,60 +628,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -943,60 +691,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1058,60 +754,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js index 736ceeaa0cac5..c76fd331aa3c4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -523,32 +479,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -583,32 +513,6 @@ Info 54 [00:02:34.000] FileName: /user/username/projects/myproject/random/ran Info 54 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:36.000] request: { "command": "rename", @@ -622,60 +526,8 @@ Info 54 [00:02:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:37.000] response: { "response": { @@ -737,60 +589,8 @@ Info 56 [00:02:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:39.000] response: { "response": { @@ -852,60 +652,8 @@ Info 58 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:41.000] response: { "response": { @@ -967,60 +715,8 @@ Info 60 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:43.000] response: { "response": { @@ -1082,60 +778,8 @@ Info 62 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:45.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js index aa42ad10ed9ee..50a0546a76764 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -534,62 +490,10 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:11.000] response: { "response": { @@ -651,60 +555,8 @@ Info 52 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] response: { "response": { @@ -766,60 +618,8 @@ Info 54 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:15.000] response: { "response": { @@ -881,60 +681,8 @@ Info 56 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -996,60 +744,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { 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 9bfe9d2344a69..058271af4bd8f 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 @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -268,19 +262,19 @@ Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:28.000] response: @@ -298,22 +292,6 @@ Info 22 [00:01:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:30.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -366,7 +344,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -374,13 +352,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:57.000] response: @@ -400,28 +378,6 @@ Info 40 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -432,7 +388,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -534,6 +490,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/dependency/tsconfig.json: {} @@ -541,7 +501,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -573,7 +533,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -643,60 +603,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { @@ -758,60 +666,8 @@ Info 59 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:20.000] response: { "response": { @@ -873,60 +729,8 @@ Info 61 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:22.000] response: { "response": { @@ -988,60 +792,8 @@ Info 63 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:24.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 65 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 67 [00:02:28.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 68 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:02:39.000] Search path: /user/username/projects/myproject/random Info 71 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1250,6 +948,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1271,32 +973,6 @@ Info 73 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 75 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:02:56.000] Files (2) @@ -1330,7 +1006,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1354,34 +1030,6 @@ Info 76 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 78 [00:03:08.000] Files (2) @@ -1415,7 +1063,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1439,36 +1087,6 @@ Info 79 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 81 [00:03:17.000] Search path: /user/username/projects/myproject/random Info 82 [00:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1511,16 +1129,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 98 [00:03:40.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js index c119ae08056a2..404889e0c596f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -545,6 +501,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -563,7 +523,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -643,60 +603,8 @@ Info 54 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:13.000] response: { "response": { @@ -758,60 +666,8 @@ Info 56 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:15.000] response: { "response": { @@ -873,60 +729,8 @@ Info 58 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:17.000] response: { "response": { @@ -988,60 +792,8 @@ Info 60 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:19.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 62 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:23.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 65 [00:02:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:34.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1249,6 +947,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1270,30 +974,6 @@ Info 71 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 73 [00:02:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 73 [00:02:52.000] Files (2) @@ -1325,7 +1005,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1349,32 +1029,6 @@ Info 74 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 76 [00:03:03.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 76 [00:03:04.000] Files (2) @@ -1406,7 +1060,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1430,34 +1084,6 @@ Info 77 [00:03:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 79 [00:03:13.000] Search path: /user/username/projects/myproject/random Info 80 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1498,16 +1124,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:34.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js index bcef40e70339d..98b232f999ccf 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -268,19 +262,19 @@ Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:28.000] response: @@ -298,22 +292,6 @@ Info 22 [00:01:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:30.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -366,7 +344,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -374,13 +352,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:57.000] response: @@ -400,28 +378,6 @@ Info 40 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -432,7 +388,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -510,56 +466,8 @@ Info 43 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:02.000] response: { "response": { @@ -621,56 +529,8 @@ Info 45 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:02:04.000] response: { "response": { @@ -732,56 +592,8 @@ Info 47 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:06.000] response: { "response": { @@ -843,56 +655,8 @@ Info 49 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:08.000] response: { "response": { @@ -952,30 +716,6 @@ Info 51 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 53 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 53 [00:02:12.000] Files (2) @@ -1007,7 +747,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1031,32 +771,6 @@ Info 54 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 56 [00:02:23.000] Search path: /user/username/projects/myproject/random Info 57 [00:02:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1093,6 +807,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1114,30 +832,6 @@ Info 59 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 61 [00:02:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 61 [00:02:40.000] Files (2) @@ -1169,7 +863,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1193,32 +887,6 @@ Info 62 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:52.000] Files (2) @@ -1250,7 +918,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1274,34 +942,6 @@ Info 65 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:03:01.000] Search path: /user/username/projects/myproject/random Info 68 [00:03:02.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1342,16 +982,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 82 [00:03:22.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index d92333bdb45d2..1d76da12c72f2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -517,32 +473,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -577,32 +507,6 @@ Info 54 [00:02:34.000] FileName: /user/username/projects/myproject/random/ran Info 54 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:36.000] request: { "command": "rename", @@ -616,60 +520,8 @@ Info 54 [00:02:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:37.000] response: { "response": { @@ -731,60 +583,8 @@ Info 56 [00:02:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:39.000] response: { "response": { @@ -846,60 +646,8 @@ Info 58 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:41.000] response: { "response": { @@ -961,60 +709,8 @@ Info 60 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:43.000] response: { "response": { @@ -1076,60 +772,8 @@ Info 62 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:45.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js index 3846c835c158e..bc83e433c1474 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -528,62 +484,10 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:11.000] response: { "response": { @@ -645,60 +549,8 @@ Info 52 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] response: { "response": { @@ -760,60 +612,8 @@ Info 54 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:15.000] response: { "response": { @@ -875,60 +675,8 @@ Info 56 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -990,60 +738,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js index bbdb9f92ceee5..5b0b5117dcac7 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -273,19 +267,19 @@ Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:28.000] response: @@ -303,22 +297,6 @@ Info 22 [00:01:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:30.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +349,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,13 +357,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:57.000] response: @@ -405,28 +383,6 @@ Info 40 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -438,7 +394,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -448,7 +404,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -534,6 +490,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/dependency/tsconfig.json: {} @@ -572,7 +532,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -642,60 +602,8 @@ Info 54 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:15.000] response: { "response": { @@ -757,60 +665,8 @@ Info 56 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -872,60 +728,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { @@ -987,60 +791,8 @@ Info 60 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:21.000] response: { "response": { @@ -1100,32 +852,6 @@ Info 62 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:25.000] Files (2) @@ -1159,7 +885,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1183,34 +909,6 @@ Info 65 [00:02:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:36.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1249,6 +947,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1270,32 +972,6 @@ Info 70 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 72 [00:02:53.000] Files (2) @@ -1329,7 +1005,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1353,34 +1029,6 @@ Info 73 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:03:05.000] Files (2) @@ -1414,7 +1062,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1438,36 +1086,6 @@ Info 76 [00:03:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:14.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1509,16 +1127,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:36.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js index 7dc9dba3bbaf9..f0fbe0b27c1ed 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -545,6 +501,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -563,7 +523,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -643,60 +603,8 @@ Info 54 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:13.000] response: { "response": { @@ -758,60 +666,8 @@ Info 56 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:15.000] response: { "response": { @@ -873,60 +729,8 @@ Info 58 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:17.000] response: { "response": { @@ -988,60 +792,8 @@ Info 60 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:19.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 62 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:23.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 65 [00:02:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:34.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1250,6 +948,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1271,32 +973,6 @@ Info 70 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 72 [00:02:51.000] Files (2) @@ -1330,7 +1006,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1354,34 +1030,6 @@ Info 73 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:02.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:03:03.000] Files (2) @@ -1415,7 +1063,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1439,36 +1087,6 @@ Info 76 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:12.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:13.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1510,16 +1128,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:34.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js index 1741586ee2c5d..37ba0eb111180 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -273,19 +267,19 @@ Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:28.000] response: @@ -303,22 +297,6 @@ Info 22 [00:01:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:30.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +349,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,13 +357,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:57.000] response: @@ -405,28 +383,6 @@ Info 40 [00:01:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -438,7 +394,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -448,7 +404,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -518,60 +474,8 @@ Info 44 [00:02:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:03.000] response: { "response": { @@ -633,60 +537,8 @@ Info 46 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:05.000] response: { "response": { @@ -748,60 +600,8 @@ Info 48 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:07.000] response: { "response": { @@ -863,60 +663,8 @@ Info 50 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:09.000] response: { "response": { @@ -976,32 +724,6 @@ Info 52 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 54 [00:02:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 54 [00:02:13.000] Files (2) @@ -1035,7 +757,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1059,34 +781,6 @@ Info 55 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:24.000] Search path: /user/username/projects/myproject/random Info 58 [00:02:25.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1125,6 +819,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1146,32 +844,6 @@ Info 60 [00:02:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 62 [00:02:41.000] Files (2) @@ -1205,7 +877,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1229,34 +901,6 @@ Info 63 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 65 [00:02:53.000] Files (2) @@ -1290,7 +934,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1314,36 +958,6 @@ Info 66 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:03:02.000] Search path: /user/username/projects/myproject/random Info 69 [00:03:03.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1385,16 +999,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 84 [00:03:24.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js index acdaa565c187f..b7edf10a99b85 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,120 +480,16 @@ Info 44 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:02.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:02:03.000] request: { "command": "rename", @@ -651,63 +503,11 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:06.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:07.000] response: { "response": { @@ -769,60 +569,8 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:09.000] response: { "response": { @@ -884,60 +632,8 @@ Info 53 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:11.000] response: { "response": { @@ -999,60 +695,8 @@ Info 55 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:13.000] response: { "response": { @@ -1114,60 +758,8 @@ Info 57 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:15.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js index 178b8d16bd29d..f7a0923155e59 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,60 +480,8 @@ Info 44 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:02.000] response: { "responseRequired": false @@ -595,63 +499,11 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:06.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:07.000] response: { "response": { @@ -713,60 +565,8 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:09.000] response: { "response": { @@ -828,60 +628,8 @@ Info 53 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:11.000] response: { "response": { @@ -943,60 +691,8 @@ Info 55 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:13.000] response: { "response": { @@ -1058,60 +754,8 @@ Info 57 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:15.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js index c132bfc72791b..92412eec6d29e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -521,60 +477,8 @@ Info 44 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:02.000] response: { "response": { @@ -636,60 +540,8 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:04.000] response: { "response": { @@ -751,60 +603,8 @@ Info 48 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:06.000] response: { "response": { @@ -866,60 +666,8 @@ Info 50 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:08.000] response: { "response": { @@ -979,32 +727,6 @@ Info 52 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 54 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 54 [00:02:12.000] Files (2) @@ -1038,7 +760,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1062,34 +784,6 @@ Info 55 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:23.000] Search path: /user/username/projects/myproject/random Info 58 [00:02:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1128,6 +822,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1149,32 +847,6 @@ Info 60 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 62 [00:02:40.000] Files (2) @@ -1208,7 +880,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1232,34 +904,6 @@ Info 63 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 65 [00:02:52.000] Files (2) @@ -1293,7 +937,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1317,36 +961,6 @@ Info 66 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:03:01.000] Search path: /user/username/projects/myproject/random Info 69 [00:03:02.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1388,16 +1002,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 84 [00:03:23.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js index 70bf083e419d0..dff00478a2698 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,120 +480,16 @@ Info 44 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:02.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:02:03.000] request: { "command": "rename", @@ -651,63 +503,11 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:06.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:07.000] response: { "response": { @@ -769,60 +569,8 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:09.000] response: { "response": { @@ -884,60 +632,8 @@ Info 53 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:11.000] response: { "response": { @@ -999,60 +695,8 @@ Info 55 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:13.000] response: { "response": { @@ -1114,60 +758,8 @@ Info 57 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:15.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js index 519dca08a5428..c729914c854e4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:27.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:29.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:31.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:56.000] response: @@ -408,28 +386,6 @@ Info 40 [00:01:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,60 +480,8 @@ Info 44 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:02.000] response: { "responseRequired": false @@ -595,63 +499,11 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:06.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:07.000] response: { "response": { @@ -713,60 +565,8 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:09.000] response: { "response": { @@ -828,60 +628,8 @@ Info 53 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:11.000] response: { "response": { @@ -943,60 +691,8 @@ Info 55 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:13.000] response: { "response": { @@ -1058,60 +754,8 @@ Info 57 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:15.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js index 84dd2400ee990..559216f4b79bf 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js @@ -59,12 +59,6 @@ let a = 10; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:00:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -113,19 +107,19 @@ Info 21 [00:01:01.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:02.000] response: @@ -143,22 +137,6 @@ Info 22 [00:01:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:04.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -211,7 +189,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -219,13 +197,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:31.000] response: @@ -245,28 +223,6 @@ Info 40 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -277,7 +233,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -355,56 +311,8 @@ Info 43 [00:01:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:01:36.000] response: { "response": { @@ -466,56 +374,8 @@ Info 45 [00:01:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:01:38.000] response: { "response": { @@ -577,56 +437,8 @@ Info 47 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:01:40.000] response: { "response": { @@ -688,56 +500,8 @@ Info 49 [00:01:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:01:42.000] response: { "response": { @@ -797,30 +561,6 @@ Info 51 [00:01:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 53 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 53 [00:01:46.000] Files (2) @@ -852,7 +592,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -876,32 +616,6 @@ Info 54 [00:01:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:01:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 56 [00:01:57.000] Search path: /user/username/projects/myproject/random Info 57 [00:01:58.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -938,6 +652,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -959,30 +677,6 @@ Info 59 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 61 [00:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 61 [00:02:14.000] Files (2) @@ -1014,7 +708,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1038,32 +732,6 @@ Info 62 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:26.000] Files (2) @@ -1095,7 +763,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1119,34 +787,6 @@ Info 65 [00:02:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:35.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1187,16 +827,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 82 [00:02:56.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js index 8487f0b3a9d27..d4f3fc326c7ce 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -523,32 +479,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:11.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -583,32 +513,6 @@ Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/ran Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:39.000] request: { "command": "rename", @@ -622,60 +526,8 @@ Info 54 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:40.000] response: { "response": { @@ -737,60 +589,8 @@ Info 56 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:42.000] response: { "response": { @@ -852,60 +652,8 @@ Info 58 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:44.000] response: { "response": { @@ -967,60 +715,8 @@ Info 60 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:46.000] response: { "response": { @@ -1082,60 +778,8 @@ Info 62 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:48.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js index a97f2a6db9b00..6a0a02e2010d2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -534,62 +490,10 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:14.000] response: { "response": { @@ -651,60 +555,8 @@ Info 52 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:16.000] response: { "response": { @@ -766,60 +618,8 @@ Info 54 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] response: { "response": { @@ -881,60 +681,8 @@ Info 56 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:20.000] response: { "response": { @@ -996,60 +744,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { 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 a9862b8bde6f1..f1c51b5622abe 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 @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -268,19 +262,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -298,22 +292,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -366,7 +344,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -374,13 +352,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -400,28 +378,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -432,7 +388,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -534,6 +490,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/dependency/tsconfig.json: {} @@ -541,7 +501,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -573,7 +533,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -643,60 +603,8 @@ Info 57 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:21.000] response: { "response": { @@ -758,60 +666,8 @@ Info 59 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:23.000] response: { "response": { @@ -873,60 +729,8 @@ Info 61 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:25.000] response: { "response": { @@ -988,60 +792,8 @@ Info 63 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:27.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 65 [00:02:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 67 [00:02:31.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 68 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:02:42.000] Search path: /user/username/projects/myproject/random Info 71 [00:02:43.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1250,6 +948,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1271,32 +973,6 @@ Info 73 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 75 [00:02:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:02:59.000] Files (2) @@ -1330,7 +1006,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1354,34 +1030,6 @@ Info 76 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 78 [00:03:11.000] Files (2) @@ -1415,7 +1063,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1439,36 +1087,6 @@ Info 79 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 81 [00:03:20.000] Search path: /user/username/projects/myproject/random Info 82 [00:03:21.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1511,16 +1129,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 98 [00:03:43.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js index ea5d36923c5b6..2813689bf0918 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -545,6 +501,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -563,7 +523,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -643,60 +603,8 @@ Info 54 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:16.000] response: { "response": { @@ -758,60 +666,8 @@ Info 56 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:18.000] response: { "response": { @@ -873,60 +729,8 @@ Info 58 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:20.000] response: { "response": { @@ -988,60 +792,8 @@ Info 60 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:22.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 62 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:26.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 65 [00:02:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:37.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1249,6 +947,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1270,30 +974,6 @@ Info 71 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 73 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 73 [00:02:55.000] Files (2) @@ -1325,7 +1005,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1349,32 +1029,6 @@ Info 74 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 76 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 76 [00:03:07.000] Files (2) @@ -1406,7 +1060,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1430,34 +1084,6 @@ Info 77 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 79 [00:03:16.000] Search path: /user/username/projects/myproject/random Info 80 [00:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1498,16 +1124,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:37.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js index f6b236a37123a..b7fcbafa00d25 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -268,19 +262,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -298,22 +292,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -366,7 +344,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -374,13 +352,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -400,28 +378,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -432,7 +388,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -510,56 +466,8 @@ Info 43 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:05.000] response: { "response": { @@ -621,56 +529,8 @@ Info 45 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:02:07.000] response: { "response": { @@ -732,56 +592,8 @@ Info 47 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:09.000] response: { "response": { @@ -843,56 +655,8 @@ Info 49 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:11.000] response: { "response": { @@ -952,30 +716,6 @@ Info 51 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 53 [00:02:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 53 [00:02:15.000] Files (2) @@ -1007,7 +747,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1031,32 +771,6 @@ Info 54 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 56 [00:02:26.000] Search path: /user/username/projects/myproject/random Info 57 [00:02:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1093,6 +807,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1114,30 +832,6 @@ Info 59 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 61 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 61 [00:02:43.000] Files (2) @@ -1169,7 +863,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1193,32 +887,6 @@ Info 62 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:55.000] Files (2) @@ -1250,7 +918,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1274,34 +942,6 @@ Info 65 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:03:04.000] Search path: /user/username/projects/myproject/random Info 68 [00:03:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1342,16 +982,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 82 [00:03:25.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index c001b2a08b7e8..9ab73c88c6c85 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -517,32 +473,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:11.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -577,32 +507,6 @@ Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/ran Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:39.000] request: { "command": "rename", @@ -616,60 +520,8 @@ Info 54 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:40.000] response: { "response": { @@ -731,60 +583,8 @@ Info 56 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:42.000] response: { "response": { @@ -846,60 +646,8 @@ Info 58 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:44.000] response: { "response": { @@ -961,60 +709,8 @@ Info 60 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:46.000] response: { "response": { @@ -1076,60 +772,8 @@ Info 62 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:48.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js index 9ebc97de856f7..99a8f7f32078e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -528,62 +484,10 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 50 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:14.000] response: { "response": { @@ -645,60 +549,8 @@ Info 52 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:16.000] response: { "response": { @@ -760,60 +612,8 @@ Info 54 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] response: { "response": { @@ -875,60 +675,8 @@ Info 56 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:20.000] response: { "response": { @@ -990,60 +738,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js index fb586720be566..86bf490662fb6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -273,19 +267,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -303,22 +297,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +349,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,13 +357,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -405,28 +383,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -438,7 +394,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -448,7 +404,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -534,6 +490,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/dependency/tsconfig.json: {} @@ -572,7 +532,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -642,60 +602,8 @@ Info 54 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] response: { "response": { @@ -757,60 +665,8 @@ Info 56 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:20.000] response: { "response": { @@ -872,60 +728,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { @@ -987,60 +791,8 @@ Info 60 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:24.000] response: { "response": { @@ -1100,32 +852,6 @@ Info 62 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:28.000] Files (2) @@ -1159,7 +885,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1183,34 +909,6 @@ Info 65 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:39.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1249,6 +947,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1270,32 +972,6 @@ Info 70 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 72 [00:02:56.000] Files (2) @@ -1329,7 +1005,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1353,34 +1029,6 @@ Info 73 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:03:08.000] Files (2) @@ -1414,7 +1062,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1438,36 +1086,6 @@ Info 76 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:17.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1509,16 +1127,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:39.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js index 6f4cfb7405189..482b942805eea 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -545,6 +501,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -563,7 +523,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -643,60 +603,8 @@ Info 54 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:16.000] response: { "response": { @@ -758,60 +666,8 @@ Info 56 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:18.000] response: { "response": { @@ -873,60 +729,8 @@ Info 58 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:20.000] response: { "response": { @@ -988,60 +792,8 @@ Info 60 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:22.000] response: { "response": { @@ -1101,32 +853,6 @@ Info 62 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 64 [00:02:26.000] Files (2) @@ -1160,7 +886,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1184,34 +910,6 @@ Info 65 [00:02:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:37.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1250,6 +948,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1271,32 +973,6 @@ Info 70 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 72 [00:02:54.000] Files (2) @@ -1330,7 +1006,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1354,34 +1030,6 @@ Info 73 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 75 [00:03:06.000] Files (2) @@ -1415,7 +1063,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1439,36 +1087,6 @@ Info 76 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:15.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1510,16 +1128,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 94 [00:03:37.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js index f2f4425ff76f4..3db0b34c3201a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -273,19 +267,19 @@ Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:31.000] response: @@ -303,22 +297,6 @@ Info 22 [00:01:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:33.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +349,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,13 +357,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:02:00.000] response: @@ -405,28 +383,6 @@ Info 40 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -438,7 +394,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -448,7 +404,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -518,60 +474,8 @@ Info 44 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:06.000] response: { "response": { @@ -633,60 +537,8 @@ Info 46 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:08.000] response: { "response": { @@ -748,60 +600,8 @@ Info 48 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:10.000] response: { "response": { @@ -863,60 +663,8 @@ Info 50 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:12.000] response: { "response": { @@ -976,32 +724,6 @@ Info 52 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 54 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 54 [00:02:16.000] Files (2) @@ -1035,7 +757,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1059,34 +781,6 @@ Info 55 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:27.000] Search path: /user/username/projects/myproject/random Info 58 [00:02:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1125,6 +819,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1146,32 +844,6 @@ Info 60 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 62 [00:02:44.000] Files (2) @@ -1205,7 +877,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1229,34 +901,6 @@ Info 63 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 65 [00:02:56.000] Files (2) @@ -1290,7 +934,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1314,36 +958,6 @@ Info 66 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:03:05.000] Search path: /user/username/projects/myproject/random Info 69 [00:03:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1385,16 +999,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 84 [00:03:27.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js index df309e29ed075..2631a6f34a54b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -521,60 +477,8 @@ Info 44 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:05.000] response: { "response": { @@ -636,60 +540,8 @@ Info 46 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:07.000] response: { "response": { @@ -751,60 +603,8 @@ Info 48 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:09.000] response: { "response": { @@ -866,60 +666,8 @@ Info 50 [00:02:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:11.000] response: { "response": { @@ -979,32 +727,6 @@ Info 52 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 54 [00:02:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 54 [00:02:15.000] Files (2) @@ -1038,7 +760,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1062,34 +784,6 @@ Info 55 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:26.000] Search path: /user/username/projects/myproject/random Info 58 [00:02:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1128,6 +822,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} @@ -1149,32 +847,6 @@ Info 60 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 62 [00:02:43.000] Files (2) @@ -1208,7 +880,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -1232,34 +904,6 @@ Info 63 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info 65 [00:02:55.000] Files (2) @@ -1293,7 +937,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1317,36 +961,6 @@ Info 66 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:03:04.000] Search path: /user/username/projects/myproject/random Info 69 [00:03:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1388,16 +1002,36 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/dependency: + {} + Info 84 [00:03:26.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index 25c89366b1d1f..2e89826789527 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,120 +480,16 @@ Info 44 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:05.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 46 [00:02:06.000] request: { "command": "rename", @@ -651,63 +503,11 @@ Info 46 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:09.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -769,60 +569,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -884,60 +632,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -999,60 +695,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1114,60 +758,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js index fae8397c4e71a..6c771344672b4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -276,19 +270,19 @@ Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependenc After request PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 21 [00:01:30.000] response: @@ -306,22 +300,6 @@ Info 22 [00:01:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} - Info 23 [00:01:32.000] Search path: /user/username/projects/myproject/random Info 24 [00:01:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 25 [00:01:34.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -374,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -382,13 +360,13 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 39 [00:01:59.000] response: @@ -408,28 +386,6 @@ Info 40 [00:02:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 41 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info 42 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -449,9 +405,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -524,60 +480,8 @@ Info 44 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:05.000] response: { "responseRequired": false @@ -595,63 +499,11 @@ Info 46 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 48 [00:02:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 49 [00:02:09.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -713,60 +565,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -828,60 +628,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -943,60 +691,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1058,60 +754,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { 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 77a104535b999..e7045bcda476f 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -845,40 +693,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:55.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -929,40 +743,6 @@ Info 86 [00:03:35.000] FileName: /user/username/projects/myproject/random/ran Info 86 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:37.000] request: { "command": "definitionAndBoundSpan", @@ -976,75 +756,7 @@ Info 86 [00:03:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 87 [00:03:38.000] response: { @@ -1096,76 +808,8 @@ Info 88 [00:03:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:40.000] response: { "response": { @@ -1216,76 +860,8 @@ Info 90 [00:03:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:42.000] response: { "response": { @@ -1336,76 +912,8 @@ Info 92 [00:03:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:44.000] response: { "response": { @@ -1456,76 +964,8 @@ Info 94 [00:03:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:46.000] response: { "response": { @@ -1576,78 +1016,10 @@ Info 96 [00:03:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:48.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:49.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:50.000] response: { "response": { @@ -1716,104 +1088,36 @@ Info 99 [00:03:50.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 100 [00:03:51.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 100 [00:03:51.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 101 [00:03:52.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:54.000] response: { "response": { @@ -1908,78 +1212,10 @@ Info 104 [00:03:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:56.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:57.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:58.000] response: { "response": { @@ -2074,78 +1310,10 @@ Info 108 [00:03:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:04:00.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:04:01.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:04:02.000] response: { "response": { @@ -2240,78 +1408,10 @@ Info 112 [00:04:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:04:04.000] Search path: /user/username/projects/myproject/dependency Info 114 [00:04:05.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 115 [00:04:06.000] response: { "response": { 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 43db09a008778..c0bcca541a538 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -856,79 +704,11 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 79 [00:02:58.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:59.000] response: { "response": { @@ -979,75 +759,7 @@ Info 81 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 82 [00:03:01.000] response: { @@ -1099,76 +811,8 @@ Info 83 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:03.000] response: { "response": { @@ -1219,76 +863,8 @@ Info 85 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:05.000] response: { "response": { @@ -1339,76 +915,8 @@ Info 87 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:07.000] response: { "response": { @@ -1459,80 +967,12 @@ Info 89 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 91 [00:03:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 92 [00:03:11.000] Search path: /user/username/projects/myproject/dependency Info 93 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:13.000] response: { "response": { @@ -1601,104 +1041,36 @@ Info 94 [00:03:13.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 95 [00:03:14.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 95 [00:03:14.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 96 [00:03:15.000] Search path: /user/username/projects/myproject/dependency Info 97 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:17.000] response: { "response": { @@ -1793,78 +1165,10 @@ Info 99 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 100 [00:03:19.000] Search path: /user/username/projects/myproject/dependency Info 101 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:03:21.000] response: { "response": { @@ -1959,78 +1263,10 @@ Info 103 [00:03:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:23.000] Search path: /user/username/projects/myproject/dependency Info 105 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:03:25.000] response: { "response": { @@ -2125,78 +1361,10 @@ Info 107 [00:03:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:27.000] Search path: /user/username/projects/myproject/dependency Info 109 [00:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:03:29.000] response: { "response": { 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 b6e8812e8d141..ced694f3846b8 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 @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -269,21 +263,21 @@ Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 23 [00:01:33.000] response: @@ -301,24 +295,6 @@ Info 24 [00:01:34.000] request: } Before request -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 25 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 26 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 27 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -376,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -384,7 +360,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -392,7 +368,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 43 [00:02:04.000] response: @@ -410,30 +386,6 @@ Info 44 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 46 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 47 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -494,7 +446,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -504,7 +456,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -514,7 +466,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 61 [00:02:38.000] response: @@ -534,68 +486,8 @@ Info 62 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:40.000] response: { "response": { @@ -646,36 +538,6 @@ Info 64 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -688,7 +550,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -801,6 +663,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/main/tsconfig.json: {} @@ -810,7 +676,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -866,7 +732,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -929,76 +795,8 @@ Info 88 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:08.000] response: { "response": { @@ -1049,75 +847,7 @@ Info 90 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 91 [00:03:10.000] response: { @@ -1169,76 +899,8 @@ Info 92 [00:03:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:12.000] response: { "response": { @@ -1289,76 +951,8 @@ Info 94 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:14.000] response: { "response": { @@ -1409,80 +1003,12 @@ Info 96 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 98 [00:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 99 [00:03:18.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:20.000] response: { "response": { @@ -1562,93 +1088,25 @@ Info 101 [00:03:20.000] response: } ] }, - "responseRequired": true - } -Info 102 [00:03:21.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "responseRequired": true + } +Info 102 [00:03:21.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 103 [00:03:22.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:24.000] response: { "response": { @@ -1743,78 +1201,10 @@ Info 106 [00:03:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:26.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:28.000] response: { "response": { @@ -1909,78 +1299,10 @@ Info 110 [00:03:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:30.000] Search path: /user/username/projects/myproject/dependency Info 112 [00:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:03:32.000] response: { "response": { @@ -2075,78 +1397,10 @@ Info 114 [00:03:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -Info 115 [00:03:34.000] Search path: /user/username/projects/myproject/dependency -Info 116 [00:03:35.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - +Info 115 [00:03:34.000] Search path: /user/username/projects/myproject/dependency +Info 116 [00:03:35.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 117 [00:03:36.000] response: { "response": { @@ -2239,40 +1493,6 @@ Info 118 [00:03:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 119 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 120 [00:03:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 120 [00:03:40.000] Files (3) @@ -2316,7 +1536,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2344,42 +1564,6 @@ Info 121 [00:03:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 122 [00:03:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 123 [00:03:56.000] Search path: /user/username/projects/myproject/random Info 124 [00:03:57.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2428,6 +1612,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2453,40 +1641,6 @@ Info 126 [00:04:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 127 [00:04:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 128 [00:04:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 128 [00:04:18.000] Files (3) @@ -2530,7 +1684,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2558,42 +1712,6 @@ Info 129 [00:04:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 130 [00:04:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 131 [00:04:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 131 [00:04:35.000] Files (3) @@ -2637,7 +1755,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2665,44 +1783,6 @@ Info 132 [00:04:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 133 [00:04:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 134 [00:04:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 134 [00:04:50.000] Files (3) @@ -2746,7 +1826,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2774,46 +1854,6 @@ Info 135 [00:05:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 136 [00:05:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 137 [00:05:02.000] Search path: /user/username/projects/myproject/random Info 138 [00:05:03.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2882,16 +1922,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} +/user/username/projects/myproject/dependency: + {} + Info 168 [00:05:39.000] response: { "responseRequired": false 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 2d82e47fc53b3..89a52fdc0e018 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -874,6 +722,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -900,38 +752,6 @@ Info 84 [00:03:01.000] Files (2) Info 85 [00:03:02.000] ----------------------------------------------- After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:03.000] response: { "response": { @@ -982,72 +802,8 @@ Info 87 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:05.000] response: { "response": { @@ -1098,72 +854,8 @@ Info 89 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:07.000] response: { "response": { @@ -1214,72 +906,8 @@ Info 91 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:09.000] response: { "response": { @@ -1330,72 +958,8 @@ Info 93 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:11.000] response: { "response": { @@ -1446,38 +1010,6 @@ Info 95 [00:03:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 97 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 98 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file @@ -1492,7 +1024,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -1578,76 +1110,8 @@ Info 100 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:18.000] response: { "response": { @@ -1709,76 +1173,8 @@ Info 102 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:20.000] response: { "response": { @@ -1840,76 +1236,8 @@ Info 104 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:22.000] response: { "response": { @@ -1968,78 +1296,10 @@ Info 106 [00:03:23.000] request: }, "seq": 15, "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 107 [00:03:24.000] response: { @@ -2100,40 +1360,6 @@ Info 108 [00:03:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 110 [00:03:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 110 [00:03:28.000] Files (2) @@ -2177,7 +1403,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2205,42 +1431,6 @@ Info 111 [00:03:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:03:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 113 [00:03:44.000] Search path: /user/username/projects/myproject/random Info 114 [00:03:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2288,6 +1478,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2313,38 +1509,6 @@ Info 117 [00:04:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 118 [00:04:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 119 [00:04:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 119 [00:04:07.000] Files (2) @@ -2386,7 +1550,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2414,40 +1578,6 @@ Info 120 [00:04:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 121 [00:04:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 122 [00:04:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 122 [00:04:24.000] Files (2) @@ -2489,7 +1619,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2517,42 +1647,6 @@ Info 123 [00:04:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 124 [00:04:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 125 [00:04:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 125 [00:04:39.000] Files (2) @@ -2594,7 +1688,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2622,44 +1716,6 @@ Info 126 [00:04:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 127 [00:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 128 [00:04:51.000] Search path: /user/username/projects/myproject/random Info 129 [00:04:52.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2723,16 +1779,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} +/user/username/projects/myproject/dependency: + {} + Info 157 [00:05:26.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js index 16eae3997b096..f73f417b7b2c9 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -269,21 +263,21 @@ Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 23 [00:01:33.000] response: @@ -301,24 +295,6 @@ Info 24 [00:01:34.000] request: } Before request -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 25 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 26 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 27 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -376,7 +352,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -384,7 +360,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -392,7 +368,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 43 [00:02:04.000] response: @@ -410,30 +386,6 @@ Info 44 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 45 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 46 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 47 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -494,7 +446,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -504,7 +456,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -514,7 +466,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 61 [00:02:38.000] response: @@ -534,68 +486,8 @@ Info 62 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:40.000] response: { "response": { @@ -646,68 +538,8 @@ Info 64 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:42.000] response: { "response": { @@ -758,68 +590,8 @@ Info 66 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:44.000] response: { "response": { @@ -870,67 +642,7 @@ Info 68 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 69 [00:02:46.000] response: { @@ -982,68 +694,8 @@ Info 70 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:48.000] response: { "response": { @@ -1094,36 +746,6 @@ Info 72 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -1136,7 +758,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -1220,72 +842,8 @@ Info 75 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:53.000] response: { "response": { @@ -1347,72 +905,8 @@ Info 77 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:55.000] response: { "response": { @@ -1474,72 +968,8 @@ Info 79 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:57.000] response: { "response": { @@ -1592,80 +1022,16 @@ Info 81 [00:02:58.000] request: { "command": "rename", "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 5, - "offset": 17 - }, - "seq": 13, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 5, + "offset": 17 + }, + "seq": 13, + "type": "request" + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 82 [00:02:59.000] response: { @@ -1726,38 +1092,6 @@ Info 83 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 85 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 85 [00:03:03.000] Files (2) @@ -1799,7 +1133,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1827,40 +1161,6 @@ Info 86 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 88 [00:03:19.000] Search path: /user/username/projects/myproject/random Info 89 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1907,6 +1207,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1932,38 +1236,6 @@ Info 91 [00:03:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 93 [00:03:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 93 [00:03:41.000] Files (2) @@ -2005,7 +1277,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2033,40 +1305,6 @@ Info 94 [00:03:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 96 [00:03:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 96 [00:03:58.000] Files (2) @@ -2108,7 +1346,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2136,42 +1374,6 @@ Info 97 [00:04:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:04:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 99 [00:04:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 99 [00:04:13.000] Files (2) @@ -2213,7 +1415,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2241,44 +1443,6 @@ Info 100 [00:04:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:04:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 102 [00:04:25.000] Search path: /user/username/projects/myproject/random Info 103 [00:04:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2342,16 +1506,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} +/user/username/projects/myproject/dependency: + {} + Info 131 [00:05:00.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index 68fff55d39c5d..20c15fd8977bf 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -839,40 +687,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:55.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -922,40 +736,6 @@ Info 85 [00:03:34.000] FileName: /user/username/projects/myproject/random/ran Info 85 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:36.000] request: { "command": "definitionAndBoundSpan", @@ -969,75 +749,7 @@ Info 85 [00:03:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 86 [00:03:37.000] response: { @@ -1089,76 +801,8 @@ Info 87 [00:03:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:39.000] response: { "response": { @@ -1209,76 +853,8 @@ Info 89 [00:03:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:41.000] response: { "response": { @@ -1329,76 +905,8 @@ Info 91 [00:03:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:43.000] response: { "response": { @@ -1449,76 +957,8 @@ Info 93 [00:03:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:45.000] response: { "response": { @@ -1569,78 +1009,10 @@ Info 95 [00:03:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:47.000] Search path: /user/username/projects/myproject/dependency Info 97 [00:03:48.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:49.000] response: { "response": { @@ -1709,104 +1081,36 @@ Info 98 [00:03:49.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 99 [00:03:50.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 99 [00:03:50.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 100 [00:03:51.000] Search path: /user/username/projects/myproject/dependency Info 101 [00:03:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:03:53.000] response: { "response": { @@ -1901,78 +1205,10 @@ Info 103 [00:03:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:55.000] Search path: /user/username/projects/myproject/dependency Info 105 [00:03:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:03:57.000] response: { "response": { @@ -2067,78 +1303,10 @@ Info 107 [00:03:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:59.000] Search path: /user/username/projects/myproject/dependency Info 109 [00:04:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:04:01.000] response: { "response": { @@ -2233,78 +1401,10 @@ Info 111 [00:04:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:04:03.000] Search path: /user/username/projects/myproject/dependency Info 113 [00:04:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 114 [00:04:05.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js index 9dbf0e19fbfca..cea1468dfcc07 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -850,78 +698,10 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:02:58.000] response: { "response": { @@ -972,75 +752,7 @@ Info 80 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 81 [00:03:00.000] response: { @@ -1092,76 +804,8 @@ Info 82 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:03:02.000] response: { "response": { @@ -1212,76 +856,8 @@ Info 84 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:04.000] response: { "response": { @@ -1332,76 +908,8 @@ Info 86 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:06.000] response: { "response": { @@ -1452,80 +960,12 @@ Info 88 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 90 [00:03:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 91 [00:03:10.000] Search path: /user/username/projects/myproject/dependency Info 92 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:12.000] response: { "response": { @@ -1594,104 +1034,36 @@ Info 93 [00:03:12.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 94 [00:03:13.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 94 [00:03:13.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 95 [00:03:14.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:16.000] response: { "response": { @@ -1786,78 +1158,10 @@ Info 98 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:18.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:20.000] response: { "response": { @@ -1952,78 +1256,10 @@ Info 102 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:22.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:24.000] response: { "response": { @@ -2118,78 +1354,10 @@ Info 106 [00:03:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:26.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:28.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js index 89127d28499da..153b43ce38b16 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -278,23 +272,23 @@ Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:34.000] response: @@ -312,26 +306,6 @@ Info 25 [00:01:35.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -389,7 +363,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -399,7 +373,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -407,7 +381,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:05.000] response: @@ -425,32 +399,6 @@ Info 45 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:07.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -511,7 +459,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -523,7 +471,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -533,7 +481,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:39.000] response: @@ -553,38 +501,6 @@ Info 63 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -597,7 +513,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -672,76 +588,8 @@ Info 66 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:44.000] response: { "response": { @@ -825,6 +673,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/main/tsconfig.json: {} @@ -873,7 +725,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -936,76 +788,8 @@ Info 82 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:03:02.000] response: { "response": { @@ -1056,75 +840,7 @@ Info 84 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 85 [00:03:04.000] response: { @@ -1176,76 +892,8 @@ Info 86 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:06.000] response: { "response": { @@ -1296,76 +944,8 @@ Info 88 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:08.000] response: { "response": { @@ -1416,80 +996,12 @@ Info 90 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 92 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 93 [00:03:12.000] Search path: /user/username/projects/myproject/dependency Info 94 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:14.000] response: { "response": { @@ -1569,93 +1081,25 @@ Info 95 [00:03:14.000] response: } ] }, - "responseRequired": true - } -Info 96 [00:03:15.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "responseRequired": true + } +Info 96 [00:03:15.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 97 [00:03:16.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:18.000] response: { "response": { @@ -1750,78 +1194,10 @@ Info 100 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:20.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:22.000] response: { "response": { @@ -1916,78 +1292,10 @@ Info 104 [00:03:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:24.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:26.000] response: { "response": { @@ -2082,78 +1390,10 @@ Info 108 [00:03:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -Info 109 [00:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 110 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - +Info 109 [00:03:28.000] Search path: /user/username/projects/myproject/dependency +Info 110 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 111 [00:03:30.000] response: { "response": { @@ -2246,40 +1486,6 @@ Info 112 [00:03:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 114 [00:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 114 [00:03:34.000] Files (3) @@ -2323,7 +1529,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2351,42 +1557,6 @@ Info 115 [00:03:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 116 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 117 [00:03:50.000] Search path: /user/username/projects/myproject/random Info 118 [00:03:51.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2435,6 +1605,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2460,40 +1634,6 @@ Info 120 [00:04:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 121 [00:04:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 122 [00:04:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 122 [00:04:12.000] Files (3) @@ -2537,7 +1677,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2565,42 +1705,6 @@ Info 123 [00:04:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 124 [00:04:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 125 [00:04:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 125 [00:04:29.000] Files (3) @@ -2644,7 +1748,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2672,44 +1776,6 @@ Info 126 [00:04:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 127 [00:04:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 128 [00:04:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 128 [00:04:44.000] Files (3) @@ -2753,7 +1819,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2781,46 +1847,6 @@ Info 129 [00:04:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 130 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 131 [00:04:56.000] Search path: /user/username/projects/myproject/random Info 132 [00:04:57.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2888,16 +1914,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} +/user/username/projects/myproject/dependency: + {} + Info 161 [00:05:32.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js index 9d764bdcccb74..5d9e77de29cde 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -873,6 +721,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -897,7 +749,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -972,76 +824,8 @@ Info 84 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:02.000] response: { "response": { @@ -1092,75 +876,7 @@ Info 86 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 87 [00:03:04.000] response: { @@ -1212,76 +928,8 @@ Info 88 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:06.000] response: { "response": { @@ -1332,76 +980,8 @@ Info 90 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:08.000] response: { "response": { @@ -1452,78 +1032,10 @@ Info 92 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 94 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:12.000] response: { "response": { @@ -1585,76 +1097,8 @@ Info 96 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:14.000] response: { "response": { @@ -1716,76 +1160,8 @@ Info 98 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:16.000] response: { "response": { @@ -1847,76 +1223,8 @@ Info 100 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:18.000] response: { "response": { @@ -1975,78 +1283,10 @@ Info 102 [00:03:19.000] request: }, "seq": 15, "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + } +Before request + +After request Info 103 [00:03:20.000] response: { @@ -2107,40 +1347,6 @@ Info 104 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 106 [00:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 106 [00:03:24.000] Files (3) @@ -2184,7 +1390,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2212,42 +1418,6 @@ Info 107 [00:03:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 109 [00:03:40.000] Search path: /user/username/projects/myproject/random Info 110 [00:03:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2296,6 +1466,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2321,40 +1495,6 @@ Info 112 [00:03:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 114 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 114 [00:04:02.000] Files (3) @@ -2398,7 +1538,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2426,42 +1566,6 @@ Info 115 [00:04:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 116 [00:04:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 117 [00:04:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 117 [00:04:19.000] Files (3) @@ -2505,7 +1609,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2533,44 +1637,6 @@ Info 118 [00:04:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 119 [00:04:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 120 [00:04:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 120 [00:04:34.000] Files (3) @@ -2614,7 +1680,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2642,46 +1708,6 @@ Info 121 [00:04:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 122 [00:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 123 [00:04:46.000] Search path: /user/username/projects/myproject/random Info 124 [00:04:47.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2749,16 +1775,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} +/user/username/projects/myproject/dependency: + {} + Info 153 [00:05:22.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js index d57be09f2b7f0..1d4ac803d596f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -278,23 +272,23 @@ Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:34.000] response: @@ -312,26 +306,6 @@ Info 25 [00:01:35.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -389,7 +363,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -399,7 +373,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -407,7 +381,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:05.000] response: @@ -425,32 +399,6 @@ Info 45 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:07.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -511,7 +459,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -523,7 +471,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -533,7 +481,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:39.000] response: @@ -553,38 +501,6 @@ Info 63 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -597,7 +513,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -672,76 +588,8 @@ Info 66 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:44.000] response: { "response": { @@ -792,76 +640,8 @@ Info 68 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:46.000] response: { "response": { @@ -912,75 +692,7 @@ Info 70 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 71 [00:02:48.000] response: { @@ -1032,76 +744,8 @@ Info 72 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:50.000] response: { "response": { @@ -1152,76 +796,8 @@ Info 74 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:52.000] response: { "response": { @@ -1283,76 +859,8 @@ Info 76 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:54.000] response: { "response": { @@ -1414,76 +922,8 @@ Info 78 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:02:56.000] response: { "response": { @@ -1545,76 +985,8 @@ Info 80 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:58.000] response: { "response": { @@ -1673,78 +1045,10 @@ Info 82 [00:02:59.000] request: }, "seq": 13, "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + } +Before request + +After request Info 83 [00:03:00.000] response: { @@ -1805,40 +1109,6 @@ Info 84 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 86 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 86 [00:03:04.000] Files (3) @@ -1882,7 +1152,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1910,42 +1180,6 @@ Info 87 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 89 [00:03:20.000] Search path: /user/username/projects/myproject/random Info 90 [00:03:21.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1994,6 +1228,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2019,40 +1257,6 @@ Info 92 [00:03:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 94 [00:03:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 94 [00:03:42.000] Files (3) @@ -2096,7 +1300,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2124,42 +1328,6 @@ Info 95 [00:03:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 97 [00:03:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 97 [00:03:59.000] Files (3) @@ -2203,7 +1371,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2231,44 +1399,6 @@ Info 98 [00:04:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 100 [00:04:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 100 [00:04:14.000] Files (3) @@ -2312,7 +1442,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2340,46 +1470,6 @@ Info 101 [00:04:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:04:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 103 [00:04:26.000] Search path: /user/username/projects/myproject/random Info 104 [00:04:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2447,16 +1537,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} +/user/username/projects/myproject/dependency: + {} + Info 133 [00:05:02.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js index e72868f0c9457..127a00e4ccc02 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,76 +591,8 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] response: { "response": { @@ -795,76 +643,8 @@ Info 68 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -915,75 +695,7 @@ Info 70 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 71 [00:02:47.000] response: { @@ -1035,76 +747,8 @@ Info 72 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:49.000] response: { "response": { @@ -1155,78 +799,10 @@ Info 74 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:51.000] Search path: /user/username/projects/myproject/dependency Info 76 [00:02:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:53.000] response: { "response": { @@ -1321,78 +897,10 @@ Info 78 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:02:55.000] Search path: /user/username/projects/myproject/dependency Info 80 [00:02:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:57.000] response: { "response": { @@ -1487,78 +995,10 @@ Info 82 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:02:59.000] Search path: /user/username/projects/myproject/dependency Info 84 [00:03:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:01.000] response: { "response": { @@ -1653,78 +1093,10 @@ Info 86 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:03.000] Search path: /user/username/projects/myproject/dependency Info 88 [00:03:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:05.000] response: { "response": { @@ -1819,78 +1191,10 @@ Info 90 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependency -Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - +Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependency +Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 93 [00:03:09.000] response: { "response": { @@ -1983,40 +1287,6 @@ Info 94 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 96 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 96 [00:03:13.000] Files (3) @@ -2060,7 +1330,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2088,42 +1358,6 @@ Info 97 [00:03:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 99 [00:03:29.000] Search path: /user/username/projects/myproject/random Info 100 [00:03:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2172,6 +1406,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2197,40 +1435,6 @@ Info 102 [00:03:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 104 [00:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 104 [00:03:51.000] Files (3) @@ -2274,7 +1478,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2302,42 +1506,6 @@ Info 105 [00:04:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:04:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 107 [00:04:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 107 [00:04:08.000] Files (3) @@ -2381,7 +1549,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2409,44 +1577,6 @@ Info 108 [00:04:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:04:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 110 [00:04:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 110 [00:04:23.000] Files (3) @@ -2490,7 +1620,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2518,46 +1648,6 @@ Info 111 [00:04:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 113 [00:04:35.000] Search path: /user/username/projects/myproject/random Info 114 [00:04:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2625,16 +1715,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} +/user/username/projects/myproject/dependency: + {} + Info 143 [00:05:11.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js index 2da853fadb95e..d2482a740bb5f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -844,76 +692,8 @@ Info 70 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:47.000] response: { "responseRequired": false @@ -934,152 +714,16 @@ Info 72 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} +After request -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -Info 73 [00:02:49.000] response: - { - "responseRequired": false - } -Before running timeout callbacks - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +Info 73 [00:02:49.000] response: + { + "responseRequired": false + } +Before running timeout callbacks After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:50.000] request: { "command": "definitionAndBoundSpan", @@ -1093,79 +737,11 @@ Info 74 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 76 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 77 [00:02:53.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:54.000] response: { "response": { @@ -1216,76 +792,8 @@ Info 79 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:56.000] response: { "response": { @@ -1336,76 +844,8 @@ Info 81 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:58.000] response: { "response": { @@ -1456,76 +896,8 @@ Info 83 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:00.000] response: { "response": { @@ -1576,76 +948,8 @@ Info 85 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:02.000] response: { "response": { @@ -1696,40 +1000,6 @@ Info 87 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 89 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 90 [00:03:06.000] Different program with same set of files @@ -1737,40 +1007,6 @@ Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependen Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:09.000] response: { "response": { @@ -1839,104 +1075,36 @@ Info 93 [00:03:09.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 94 [00:03:10.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 14, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 94 [00:03:10.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 14, + "type": "request" + } +Before request Info 95 [00:03:11.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:13.000] response: { "response": { @@ -2031,78 +1199,10 @@ Info 98 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:15.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] response: { "response": { @@ -2197,78 +1297,10 @@ Info 102 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] response: { "response": { @@ -2363,78 +1395,10 @@ Info 106 [00:03:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js index 584fa709c6d1d..21866553bc02e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/dependency Info 27 [00:01:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -392,7 +366,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -402,7 +376,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -410,7 +384,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 44 [00:02:04.000] response: @@ -428,32 +402,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -514,7 +462,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -526,7 +474,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/tsconfig.json: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -536,7 +484,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -556,38 +504,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -612,7 +528,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -675,78 +591,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -844,76 +692,8 @@ Info 70 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:47.000] response: { "responseRequired": false @@ -934,75 +714,7 @@ Info 72 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 73 [00:02:49.000] response: { @@ -1021,79 +733,11 @@ Info 74 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 76 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 77 [00:02:53.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:54.000] response: { "response": { @@ -1144,76 +788,8 @@ Info 79 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:56.000] response: { "response": { @@ -1264,76 +840,8 @@ Info 81 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:58.000] response: { "response": { @@ -1384,76 +892,8 @@ Info 83 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:00.000] response: { "response": { @@ -1504,76 +944,8 @@ Info 85 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:02.000] response: { "response": { @@ -1624,40 +996,6 @@ Info 87 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 89 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 90 [00:03:06.000] Different program with same set of files @@ -1665,40 +1003,6 @@ Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependen Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:09.000] response: { "response": { @@ -1767,104 +1071,36 @@ Info 93 [00:03:09.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 94 [00:03:10.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 14, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 94 [00:03:10.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 14, + "type": "request" + } +Before request Info 95 [00:03:11.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:13.000] response: { "response": { @@ -1959,78 +1195,10 @@ Info 98 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:15.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] response: { "response": { @@ -2125,78 +1293,10 @@ Info 102 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] response: { "response": { @@ -2291,78 +1391,10 @@ Info 106 [00:03:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js index eb5606a756b61..6ddba9192d454 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -844,40 +704,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:53.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -928,40 +754,6 @@ Info 87 [00:03:33.000] FileName: /user/username/projects/myproject/random/ran Info 87 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:35.000] request: { "command": "definitionAndBoundSpan", @@ -975,76 +767,8 @@ Info 87 [00:03:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:36.000] response: { "response": { @@ -1095,76 +819,8 @@ Info 89 [00:03:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:38.000] response: { "response": { @@ -1215,76 +871,8 @@ Info 91 [00:03:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:40.000] response: { "response": { @@ -1335,76 +923,8 @@ Info 93 [00:03:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:42.000] response: { "response": { @@ -1455,76 +975,8 @@ Info 95 [00:03:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:44.000] response: { "response": { @@ -1575,78 +1027,10 @@ Info 97 [00:03:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:46.000] Search path: /user/username/projects/myproject/dependency Info 99 [00:03:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 100 [00:03:48.000] response: { "response": { @@ -1741,78 +1125,10 @@ Info 101 [00:03:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:03:50.000] Search path: /user/username/projects/myproject/dependency Info 103 [00:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:52.000] response: { "response": { @@ -1907,78 +1223,10 @@ Info 105 [00:03:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:03:54.000] Search path: /user/username/projects/myproject/dependency Info 107 [00:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:56.000] response: { "response": { @@ -2073,78 +1321,10 @@ Info 109 [00:03:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:03:58.000] Search path: /user/username/projects/myproject/dependency Info 111 [00:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:04:00.000] response: { "response": { @@ -2239,78 +1419,10 @@ Info 113 [00:04:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 114 [00:04:02.000] Search path: /user/username/projects/myproject/dependency Info 115 [00:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 116 [00:04:04.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js index e3645eeff3e61..b85dab6298234 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -855,79 +715,11 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 80 [00:02:56.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:57.000] response: { "response": { @@ -978,76 +770,8 @@ Info 82 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:02:59.000] response: { "response": { @@ -1098,76 +822,8 @@ Info 84 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:01.000] response: { "response": { @@ -1218,76 +874,8 @@ Info 86 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:03.000] response: { "response": { @@ -1338,76 +926,8 @@ Info 88 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:05.000] response: { "response": { @@ -1458,80 +978,12 @@ Info 90 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 92 [00:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 93 [00:03:09.000] Search path: /user/username/projects/myproject/dependency Info 94 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:11.000] response: { "response": { @@ -1626,78 +1078,10 @@ Info 96 [00:03:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:13.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:15.000] response: { "response": { @@ -1792,78 +1176,10 @@ Info 100 [00:03:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] response: { "response": { @@ -1958,78 +1274,10 @@ Info 104 [00:03:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] response: { "response": { @@ -2124,78 +1372,10 @@ Info 108 [00:03:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:27.000] response: { "response": { 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 05d46e3c10cec..9a9d914f5e688 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 @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -293,27 +287,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -331,30 +325,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -399,7 +369,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -410,6 +380,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -433,30 +407,6 @@ Info 46 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:05.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:07.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -517,7 +467,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -527,7 +477,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -537,7 +487,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:37.000] response: @@ -557,68 +507,8 @@ Info 64 [00:02:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:39.000] response: { "response": { @@ -669,36 +559,6 @@ Info 66 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:41.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file @@ -713,7 +573,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -859,39 +719,9 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +PolledWatches *deleted*:: /user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} + {"pollingInterval":2000} FsWatches:: /user/username/projects/myproject/main/tsconfig.json: @@ -902,7 +732,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -915,6 +745,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} +After request + Info 83 [00:02:59.000] response: { "response": { @@ -965,72 +797,8 @@ Info 84 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:01.000] response: { "response": { @@ -1081,72 +849,8 @@ Info 86 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:03.000] response: { "response": { @@ -1197,72 +901,8 @@ Info 88 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:05.000] response: { "response": { @@ -1313,72 +953,8 @@ Info 90 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:07.000] response: { "response": { @@ -1429,38 +1005,6 @@ Info 92 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 94 [00:03:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 95 [00:03:11.000] Search path: /user/username/projects/myproject/dependency @@ -1490,7 +1034,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -1597,78 +1141,10 @@ Info 100 [00:03:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] response: { "response": { @@ -1763,78 +1239,10 @@ Info 104 [00:03:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] response: { "response": { @@ -1929,78 +1337,10 @@ Info 108 [00:03:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:27.000] response: { "response": { @@ -2095,78 +1435,10 @@ Info 112 [00:03:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 113 [00:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 114 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 113 [00:03:29.000] Search path: /user/username/projects/myproject/dependency +Info 114 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 115 [00:03:31.000] response: { "response": { @@ -2259,40 +1531,6 @@ Info 116 [00:03:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 117 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 118 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 118 [00:03:35.000] Files (3) @@ -2336,7 +1574,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2364,42 +1602,6 @@ Info 119 [00:03:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 120 [00:03:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 121 [00:03:51.000] Search path: /user/username/projects/myproject/random Info 122 [00:03:52.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2448,6 +1650,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2473,40 +1679,6 @@ Info 124 [00:04:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 125 [00:04:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 126 [00:04:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 126 [00:04:13.000] Files (3) @@ -2550,7 +1722,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2578,42 +1750,6 @@ Info 127 [00:04:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 128 [00:04:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 129 [00:04:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 129 [00:04:30.000] Files (3) @@ -2657,7 +1793,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2685,44 +1821,6 @@ Info 130 [00:04:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 131 [00:04:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 132 [00:04:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 132 [00:04:45.000] Files (3) @@ -2766,7 +1864,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2794,46 +1892,6 @@ Info 133 [00:04:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 134 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 135 [00:04:57.000] Search path: /user/username/projects/myproject/random Info 136 [00:04:58.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2902,16 +1960,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 166 [00:05:34.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js index 0d2b690df1a84..9837622db95ba 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -873,6 +733,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -888,38 +752,6 @@ Info 83 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/pr Info 84 [00:02:58.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:02:59.000] response: { "response": { @@ -970,72 +802,8 @@ Info 86 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:01.000] response: { "response": { @@ -1086,72 +854,8 @@ Info 88 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:03.000] response: { "response": { @@ -1202,72 +906,8 @@ Info 90 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:05.000] response: { "response": { @@ -1318,72 +958,8 @@ Info 92 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:07.000] response: { "response": { @@ -1434,38 +1010,6 @@ Info 94 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 96 [00:03:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 97 [00:03:11.000] Search path: /user/username/projects/myproject/dependency @@ -1482,7 +1026,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -1601,78 +1145,10 @@ Info 101 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:03:16.000] Search path: /user/username/projects/myproject/dependency Info 103 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:18.000] response: { "response": { @@ -1767,78 +1243,10 @@ Info 105 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:03:20.000] Search path: /user/username/projects/myproject/dependency Info 107 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:22.000] response: { "response": { @@ -1933,78 +1341,10 @@ Info 109 [00:03:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:03:24.000] Search path: /user/username/projects/myproject/dependency Info 111 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:03:26.000] response: { "response": { @@ -2099,77 +1439,9 @@ Info 113 [00:03:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 114 [00:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 115 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +Info 114 [00:03:28.000] Search path: /user/username/projects/myproject/dependency +Info 115 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request Info 116 [00:03:30.000] response: { @@ -2263,40 +1535,6 @@ Info 117 [00:03:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 118 [00:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 119 [00:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 119 [00:03:34.000] Files (3) @@ -2340,7 +1578,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2368,42 +1606,6 @@ Info 120 [00:03:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 121 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 122 [00:03:50.000] Search path: /user/username/projects/myproject/random Info 123 [00:03:51.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2451,6 +1653,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2476,38 +1684,6 @@ Info 126 [00:04:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 127 [00:04:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 128 [00:04:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 128 [00:04:13.000] Files (3) @@ -2549,7 +1725,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2577,40 +1753,6 @@ Info 129 [00:04:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 130 [00:04:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 131 [00:04:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 131 [00:04:30.000] Files (3) @@ -2652,7 +1794,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2680,42 +1822,6 @@ Info 132 [00:04:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 133 [00:04:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 134 [00:04:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 134 [00:04:45.000] Files (3) @@ -2757,7 +1863,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2785,44 +1891,6 @@ Info 135 [00:04:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 136 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 137 [00:04:57.000] Search path: /user/username/projects/myproject/random Info 138 [00:04:58.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2889,16 +1957,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 166 [00:05:32.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js index fd85f02897881..eea64149bbff6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -293,27 +287,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -331,30 +325,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -399,7 +369,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -410,6 +380,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -433,30 +407,6 @@ Info 46 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:05.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:07.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -517,7 +467,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -527,7 +477,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -537,7 +487,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:37.000] response: @@ -557,68 +507,8 @@ Info 64 [00:02:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:39.000] response: { "response": { @@ -669,68 +559,8 @@ Info 66 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:41.000] response: { "response": { @@ -781,68 +611,8 @@ Info 68 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:43.000] response: { "response": { @@ -893,68 +663,8 @@ Info 70 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:45.000] response: { "response": { @@ -1005,68 +715,8 @@ Info 72 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:47.000] response: { "response": { @@ -1117,36 +767,6 @@ Info 74 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:49.000] Search path: /user/username/projects/myproject/dependency Info 76 [00:02:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 77 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file @@ -1161,7 +781,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -1278,74 +898,10 @@ Info 79 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:54.000] Search path: /user/username/projects/myproject/dependency Info 81 [00:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:56.000] response: { "response": { @@ -1440,74 +996,10 @@ Info 83 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:02:58.000] Search path: /user/username/projects/myproject/dependency Info 85 [00:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:00.000] response: { "response": { @@ -1602,74 +1094,10 @@ Info 87 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:02.000] Search path: /user/username/projects/myproject/dependency Info 89 [00:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:04.000] response: { "response": { @@ -1757,80 +1185,16 @@ Info 91 [00:03:05.000] request: "arguments": { "file": "/user/username/projects/myproject/dependency/FnS.ts", "line": 5, - "offset": 17 - }, - "seq": 13, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 92 [00:03:06.000] Search path: /user/username/projects/myproject/dependency -Info 93 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} + "offset": 17 + }, + "seq": 13, + "type": "request" + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +Info 92 [00:03:06.000] Search path: /user/username/projects/myproject/dependency +Info 93 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request Info 94 [00:03:08.000] response: { @@ -1924,38 +1288,6 @@ Info 95 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 97 [00:03:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 97 [00:03:12.000] Files (3) @@ -1997,7 +1329,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2025,40 +1357,6 @@ Info 98 [00:03:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 100 [00:03:28.000] Search path: /user/username/projects/myproject/random Info 101 [00:03:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2105,6 +1403,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2130,38 +1432,6 @@ Info 103 [00:03:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 105 [00:03:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 105 [00:03:50.000] Files (3) @@ -2203,7 +1473,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2231,40 +1501,6 @@ Info 106 [00:04:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:04:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 108 [00:04:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 108 [00:04:07.000] Files (3) @@ -2306,7 +1542,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2334,42 +1570,6 @@ Info 109 [00:04:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 111 [00:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 111 [00:04:22.000] Files (3) @@ -2411,7 +1611,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2439,44 +1639,6 @@ Info 112 [00:04:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:04:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 114 [00:04:34.000] Search path: /user/username/projects/myproject/random Info 115 [00:04:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2543,16 +1705,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 143 [00:05:09.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index 151ba5e4f58d3..3bfa5844e63ec 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -838,40 +698,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:53.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -922,40 +748,6 @@ Info 87 [00:03:33.000] FileName: /user/username/projects/myproject/random/ran Info 87 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:35.000] request: { "command": "definitionAndBoundSpan", @@ -969,76 +761,8 @@ Info 87 [00:03:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:36.000] response: { "response": { @@ -1089,76 +813,8 @@ Info 89 [00:03:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:38.000] response: { "response": { @@ -1209,76 +865,8 @@ Info 91 [00:03:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:40.000] response: { "response": { @@ -1329,76 +917,8 @@ Info 93 [00:03:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:42.000] response: { "response": { @@ -1449,76 +969,8 @@ Info 95 [00:03:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:44.000] response: { "response": { @@ -1569,78 +1021,10 @@ Info 97 [00:03:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:46.000] Search path: /user/username/projects/myproject/dependency Info 99 [00:03:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 100 [00:03:48.000] response: { "response": { @@ -1735,78 +1119,10 @@ Info 101 [00:03:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:03:50.000] Search path: /user/username/projects/myproject/dependency Info 103 [00:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:52.000] response: { "response": { @@ -1901,78 +1217,10 @@ Info 105 [00:03:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:03:54.000] Search path: /user/username/projects/myproject/dependency Info 107 [00:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:56.000] response: { "response": { @@ -2067,78 +1315,10 @@ Info 109 [00:03:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:03:58.000] Search path: /user/username/projects/myproject/dependency Info 111 [00:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:04:00.000] response: { "response": { @@ -2233,78 +1413,10 @@ Info 113 [00:04:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 114 [00:04:02.000] Search path: /user/username/projects/myproject/dependency Info 115 [00:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 116 [00:04:04.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js index fc7e8ec12f0bd..0a517d15523b9 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -849,79 +709,11 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 80 [00:02:56.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:57.000] response: { "response": { @@ -972,76 +764,8 @@ Info 82 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:02:59.000] response: { "response": { @@ -1092,76 +816,8 @@ Info 84 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:01.000] response: { "response": { @@ -1212,76 +868,8 @@ Info 86 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:03.000] response: { "response": { @@ -1332,76 +920,8 @@ Info 88 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:05.000] response: { "response": { @@ -1452,80 +972,12 @@ Info 90 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 92 [00:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 93 [00:03:09.000] Search path: /user/username/projects/myproject/dependency Info 94 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:11.000] response: { "response": { @@ -1620,78 +1072,10 @@ Info 96 [00:03:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:13.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:15.000] response: { "response": { @@ -1786,78 +1170,10 @@ Info 100 [00:03:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] response: { "response": { @@ -1952,78 +1268,10 @@ Info 104 [00:03:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] response: { "response": { @@ -2118,78 +1366,10 @@ Info 108 [00:03:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:27.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js index 565d089917bce..c3dc6ce48d5c6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -298,27 +292,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -336,30 +330,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -404,7 +374,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -415,6 +385,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -438,30 +412,6 @@ Info 46 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:05.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:07.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -522,7 +472,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -532,7 +482,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -542,7 +492,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:37.000] response: @@ -562,68 +512,8 @@ Info 64 [00:02:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:39.000] response: { "response": { @@ -674,36 +564,6 @@ Info 66 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:41.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -719,7 +579,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -731,7 +591,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -859,6 +719,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/main/tsconfig.json: {} @@ -886,38 +750,6 @@ Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/pr Info 83 [00:02:59.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:00.000] response: { "response": { @@ -968,72 +800,8 @@ Info 85 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:02.000] response: { "response": { @@ -1084,72 +852,8 @@ Info 87 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:04.000] response: { "response": { @@ -1200,72 +904,8 @@ Info 89 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:06.000] response: { "response": { @@ -1316,72 +956,8 @@ Info 91 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:08.000] response: { "response": { @@ -1432,38 +1008,6 @@ Info 93 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 95 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 96 [00:03:12.000] Search path: /user/username/projects/myproject/dependency @@ -1492,7 +1036,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -1599,78 +1143,10 @@ Info 100 [00:03:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] response: { "response": { @@ -1765,78 +1241,10 @@ Info 104 [00:03:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] response: { "response": { @@ -1931,78 +1339,10 @@ Info 108 [00:03:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:27.000] response: { "response": { @@ -2097,78 +1437,10 @@ Info 112 [00:03:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 113 [00:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 114 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 113 [00:03:29.000] Search path: /user/username/projects/myproject/dependency +Info 114 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 115 [00:03:31.000] response: { "response": { @@ -2261,40 +1533,6 @@ Info 116 [00:03:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 117 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 118 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 118 [00:03:35.000] Files (3) @@ -2338,7 +1576,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2366,42 +1604,6 @@ Info 119 [00:03:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 120 [00:03:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 121 [00:03:51.000] Search path: /user/username/projects/myproject/random Info 122 [00:03:52.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2450,6 +1652,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2475,40 +1681,6 @@ Info 124 [00:04:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 125 [00:04:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 126 [00:04:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 126 [00:04:13.000] Files (3) @@ -2552,7 +1724,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2580,42 +1752,6 @@ Info 127 [00:04:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 128 [00:04:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 129 [00:04:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 129 [00:04:30.000] Files (3) @@ -2659,7 +1795,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2687,44 +1823,6 @@ Info 130 [00:04:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 131 [00:04:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 132 [00:04:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 132 [00:04:45.000] Files (3) @@ -2768,7 +1866,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2796,46 +1894,6 @@ Info 133 [00:04:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 134 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 135 [00:04:57.000] Search path: /user/username/projects/myproject/random Info 136 [00:04:58.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2903,16 +1961,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 165 [00:05:33.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js index 367bb617a8c36..9b8acd69753ff 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -872,6 +732,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -887,38 +751,6 @@ Info 82 [00:02:56.000] Finishing updateGraphWorker: Project: /user/username/pr Info 83 [00:02:57.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:02:58.000] response: { "response": { @@ -969,72 +801,8 @@ Info 85 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:00.000] response: { "response": { @@ -1085,72 +853,8 @@ Info 87 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:02.000] response: { "response": { @@ -1201,72 +905,8 @@ Info 89 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:04.000] response: { "response": { @@ -1317,72 +957,8 @@ Info 91 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:06.000] response: { "response": { @@ -1433,38 +1009,6 @@ Info 93 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 95 [00:03:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 96 [00:03:10.000] Search path: /user/username/projects/myproject/dependency @@ -1481,7 +1025,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -1600,78 +1144,10 @@ Info 100 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:15.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:17.000] response: { "response": { @@ -1766,78 +1242,10 @@ Info 104 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:19.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:21.000] response: { "response": { @@ -1932,78 +1340,10 @@ Info 108 [00:03:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:23.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:25.000] response: { "response": { @@ -2098,78 +1438,10 @@ Info 112 [00:03:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 113 [00:03:27.000] Search path: /user/username/projects/myproject/dependency -Info 114 [00:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 113 [00:03:27.000] Search path: /user/username/projects/myproject/dependency +Info 114 [00:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 115 [00:03:29.000] response: { "response": { @@ -2262,40 +1534,6 @@ Info 116 [00:03:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 117 [00:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 118 [00:03:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 118 [00:03:33.000] Files (3) @@ -2339,7 +1577,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2367,42 +1605,6 @@ Info 119 [00:03:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 120 [00:03:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 121 [00:03:49.000] Search path: /user/username/projects/myproject/random Info 122 [00:03:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2451,6 +1653,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2476,40 +1682,6 @@ Info 124 [00:04:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 125 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 126 [00:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 126 [00:04:11.000] Files (3) @@ -2553,7 +1725,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2581,42 +1753,6 @@ Info 127 [00:04:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 128 [00:04:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 129 [00:04:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 129 [00:04:28.000] Files (3) @@ -2660,7 +1796,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2688,44 +1824,6 @@ Info 130 [00:04:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 131 [00:04:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 132 [00:04:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 132 [00:04:43.000] Files (3) @@ -2769,7 +1867,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2797,46 +1895,6 @@ Info 133 [00:04:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 134 [00:04:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 135 [00:04:55.000] Search path: /user/username/projects/myproject/random Info 136 [00:04:56.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2904,16 +1962,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 165 [00:05:31.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js index f561b17fb058f..65087820e8e97 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -298,27 +292,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -336,30 +330,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -404,7 +374,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -415,6 +385,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -438,30 +412,6 @@ Info 46 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:05.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:07.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -522,7 +472,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -532,7 +482,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -542,7 +492,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:37.000] response: @@ -562,68 +512,8 @@ Info 64 [00:02:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:39.000] response: { "response": { @@ -674,68 +564,8 @@ Info 66 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:41.000] response: { "response": { @@ -786,68 +616,8 @@ Info 68 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:43.000] response: { "response": { @@ -898,68 +668,8 @@ Info 70 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:45.000] response: { "response": { @@ -1010,68 +720,8 @@ Info 72 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:47.000] response: { "response": { @@ -1122,36 +772,6 @@ Info 74 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:49.000] Search path: /user/username/projects/myproject/dependency Info 76 [00:02:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 77 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -1167,7 +787,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -1179,7 +799,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -1286,78 +906,10 @@ Info 80 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:55.000] Search path: /user/username/projects/myproject/dependency Info 82 [00:02:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:02:57.000] response: { "response": { @@ -1452,78 +1004,10 @@ Info 84 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:02:59.000] Search path: /user/username/projects/myproject/dependency Info 86 [00:03:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:01.000] response: { "response": { @@ -1618,78 +1102,10 @@ Info 88 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:03.000] Search path: /user/username/projects/myproject/dependency Info 90 [00:03:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:05.000] response: { "response": { @@ -1784,78 +1200,10 @@ Info 92 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 93 [00:03:07.000] Search path: /user/username/projects/myproject/dependency -Info 94 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 93 [00:03:07.000] Search path: /user/username/projects/myproject/dependency +Info 94 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 95 [00:03:09.000] response: { "response": { @@ -1948,40 +1296,6 @@ Info 96 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 98 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 98 [00:03:13.000] Files (3) @@ -2025,7 +1339,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2053,42 +1367,6 @@ Info 99 [00:03:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 100 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 101 [00:03:29.000] Search path: /user/username/projects/myproject/random Info 102 [00:03:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2137,6 +1415,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2162,40 +1444,6 @@ Info 104 [00:03:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 106 [00:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 106 [00:03:51.000] Files (3) @@ -2239,7 +1487,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2267,42 +1515,6 @@ Info 107 [00:04:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:04:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 109 [00:04:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 109 [00:04:08.000] Files (3) @@ -2346,7 +1558,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2374,44 +1586,6 @@ Info 110 [00:04:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:04:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 112 [00:04:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 112 [00:04:23.000] Files (3) @@ -2455,7 +1629,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2483,46 +1657,6 @@ Info 113 [00:04:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 114 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 115 [00:04:35.000] Search path: /user/username/projects/myproject/random Info 116 [00:04:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2590,16 +1724,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 145 [00:05:11.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js index f40e8748c5cd9..6d3e9476e17ff 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -844,152 +704,16 @@ Info 72 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:46.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:47.000] request: { "command": "definitionAndBoundSpan", @@ -1003,79 +727,11 @@ Info 74 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 76 [00:02:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 77 [00:02:50.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:51.000] response: { "response": { @@ -1126,76 +782,8 @@ Info 79 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:53.000] response: { "response": { @@ -1246,76 +834,8 @@ Info 81 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:55.000] response: { "response": { @@ -1366,76 +886,8 @@ Info 83 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:02:57.000] response: { "response": { @@ -1486,76 +938,8 @@ Info 85 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:02:59.000] response: { "response": { @@ -1606,40 +990,6 @@ Info 87 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 89 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 90 [00:03:03.000] Different program with same set of files @@ -1647,40 +997,6 @@ Info 91 [00:03:04.000] Search path: /user/username/projects/myproject/dependen Info 92 [00:03:05.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:06.000] response: { "response": { @@ -1775,78 +1091,10 @@ Info 94 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:08.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:09.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:10.000] response: { "response": { @@ -1941,78 +1189,10 @@ Info 98 [00:03:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:12.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:14.000] response: { "response": { @@ -2107,78 +1287,10 @@ Info 102 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:16.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:18.000] response: { "response": { @@ -2273,78 +1385,10 @@ Info 106 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:20.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:22.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js index 43ac396e90025..a988773610243 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -844,76 +704,8 @@ Info 72 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:46.000] response: { "responseRequired": false @@ -931,79 +723,11 @@ Info 74 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 76 [00:02:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 77 [00:02:50.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:51.000] response: { "response": { @@ -1054,76 +778,8 @@ Info 79 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:53.000] response: { "response": { @@ -1174,76 +830,8 @@ Info 81 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:55.000] response: { "response": { @@ -1294,76 +882,8 @@ Info 83 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:02:57.000] response: { "response": { @@ -1414,76 +934,8 @@ Info 85 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:02:59.000] response: { "response": { @@ -1534,40 +986,6 @@ Info 87 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 89 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 90 [00:03:03.000] Different program with same set of files @@ -1575,40 +993,6 @@ Info 91 [00:03:04.000] Search path: /user/username/projects/myproject/dependen Info 92 [00:03:05.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:06.000] response: { "response": { @@ -1703,78 +1087,10 @@ Info 94 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:08.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:09.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:10.000] response: { "response": { @@ -1869,78 +1185,10 @@ Info 98 [00:03:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:12.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:14.000] response: { "response": { @@ -2035,78 +1283,10 @@ Info 102 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:16.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:18.000] response: { "response": { @@ -2201,78 +1381,10 @@ Info 106 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:20.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:22.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/gotoDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/gotoDef-and-rename-locations.js index e8bbe28a4c3af..6969dee603fde 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/gotoDef-and-rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/gotoDef-and-rename-locations.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,68 +567,8 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] response: { "response": { @@ -789,68 +619,8 @@ Info 68 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:42.000] response: { "response": { @@ -901,68 +671,8 @@ Info 70 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:44.000] response: { "response": { @@ -1013,68 +723,8 @@ Info 72 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:46.000] response: { "response": { @@ -1125,36 +775,6 @@ Info 74 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:48.000] Search path: /user/username/projects/myproject/dependency Info 76 [00:02:49.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 77 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -1180,9 +800,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -1289,78 +909,10 @@ Info 80 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:54.000] Search path: /user/username/projects/myproject/dependency Info 82 [00:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:02:56.000] response: { "response": { @@ -1455,78 +1007,10 @@ Info 84 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:02:58.000] Search path: /user/username/projects/myproject/dependency Info 86 [00:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:00.000] response: { "response": { @@ -1621,78 +1105,10 @@ Info 88 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:02.000] Search path: /user/username/projects/myproject/dependency Info 90 [00:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:04.000] response: { "response": { @@ -1787,78 +1203,10 @@ Info 92 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 93 [00:03:06.000] Search path: /user/username/projects/myproject/dependency -Info 94 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 93 [00:03:06.000] Search path: /user/username/projects/myproject/dependency +Info 94 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 95 [00:03:08.000] response: { "response": { @@ -1951,40 +1299,6 @@ Info 96 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 98 [00:03:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 98 [00:03:12.000] Files (3) @@ -2028,7 +1342,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2056,42 +1370,6 @@ Info 99 [00:03:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 100 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 101 [00:03:28.000] Search path: /user/username/projects/myproject/random Info 102 [00:03:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2140,6 +1418,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2165,40 +1447,6 @@ Info 104 [00:03:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 106 [00:03:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 106 [00:03:50.000] Files (3) @@ -2242,7 +1490,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2270,42 +1518,6 @@ Info 107 [00:04:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:04:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 109 [00:04:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 109 [00:04:07.000] Files (3) @@ -2349,7 +1561,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2377,44 +1589,6 @@ Info 110 [00:04:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 112 [00:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 112 [00:04:22.000] Files (3) @@ -2458,7 +1632,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2486,46 +1660,6 @@ Info 113 [00:04:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 114 [00:04:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 115 [00:04:34.000] Search path: /user/username/projects/myproject/random Info 116 [00:04:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2593,16 +1727,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 145 [00:05:10.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js index a2e7e6c7260b0..c0b2fbd26ab6a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -844,76 +704,8 @@ Info 72 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:46.000] response: { "responseRequired": false @@ -934,152 +726,16 @@ Info 74 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:48.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:49.000] request: { "command": "definitionAndBoundSpan", @@ -1093,79 +749,11 @@ Info 76 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 79 [00:02:52.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:53.000] response: { "response": { @@ -1216,76 +804,8 @@ Info 81 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:55.000] response: { "response": { @@ -1336,76 +856,8 @@ Info 83 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:02:57.000] response: { "response": { @@ -1456,76 +908,8 @@ Info 85 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:02:59.000] response: { "response": { @@ -1576,76 +960,8 @@ Info 87 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:01.000] response: { "response": { @@ -1696,40 +1012,6 @@ Info 89 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 91 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 92 [00:03:05.000] Different program with same set of files @@ -1737,40 +1019,6 @@ Info 93 [00:03:06.000] Search path: /user/username/projects/myproject/dependen Info 94 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:08.000] response: { "response": { @@ -1865,78 +1113,10 @@ Info 96 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:10.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:12.000] response: { "response": { @@ -2031,78 +1211,10 @@ Info 100 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:14.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:16.000] response: { "response": { @@ -2197,78 +1309,10 @@ Info 104 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:18.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:20.000] response: { "response": { @@ -2363,78 +1407,10 @@ Info 108 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:22.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:24.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js index 0e20670089de0..4fd8935dc3909 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -418,6 +388,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -441,30 +415,6 @@ Info 46 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 47 [00:02:04.000] Search path: /user/username/projects/myproject/random Info 48 [00:02:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:02:06.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -525,7 +475,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -535,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -545,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:36.000] response: @@ -565,68 +515,8 @@ Info 64 [00:02:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:38.000] response: { "response": { @@ -677,36 +567,6 @@ Info 66 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:40.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 69 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info @@ -732,9 +592,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -844,76 +704,8 @@ Info 72 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:46.000] response: { "responseRequired": false @@ -934,76 +726,8 @@ Info 74 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:48.000] response: { "responseRequired": false @@ -1021,79 +745,11 @@ Info 76 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 79 [00:02:52.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:53.000] response: { "response": { @@ -1144,76 +800,8 @@ Info 81 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:55.000] response: { "response": { @@ -1264,76 +852,8 @@ Info 83 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:02:57.000] response: { "response": { @@ -1384,76 +904,8 @@ Info 85 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:02:59.000] response: { "response": { @@ -1504,76 +956,8 @@ Info 87 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:01.000] response: { "response": { @@ -1624,40 +1008,6 @@ Info 89 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 91 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 92 [00:03:05.000] Different program with same set of files @@ -1665,40 +1015,6 @@ Info 93 [00:03:06.000] Search path: /user/username/projects/myproject/dependen Info 94 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:08.000] response: { "response": { @@ -1793,78 +1109,10 @@ Info 96 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:10.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:12.000] response: { "response": { @@ -1959,78 +1207,10 @@ Info 100 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:14.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:16.000] response: { "response": { @@ -2125,78 +1305,10 @@ Info 104 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:18.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:20.000] response: { "response": { @@ -2291,78 +1403,10 @@ Info 108 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:22.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:24.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js index ee6dac0ff23ba..aa2a0f78965f4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js @@ -59,12 +59,6 @@ let a = 10; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/main Info 3 [00:00:38.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -138,27 +132,27 @@ Info 28 [00:01:08.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 28 [00:01:09.000] response: @@ -176,30 +170,6 @@ Info 29 [00:01:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 31 [00:01:12.000] Search path: /user/username/projects/myproject/dependency Info 32 [00:01:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json @@ -246,7 +216,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -257,6 +227,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -278,30 +252,6 @@ Info 46 [00:01:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} - Info 47 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 48 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 49 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -364,7 +314,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -374,7 +324,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -382,7 +332,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 63 [00:02:11.000] response: @@ -402,68 +352,8 @@ Info 64 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:13.000] response: { "response": { @@ -514,68 +404,8 @@ Info 66 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:15.000] response: { "response": { @@ -626,68 +456,8 @@ Info 68 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:17.000] response: { "response": { @@ -738,68 +508,8 @@ Info 70 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:19.000] response: { "response": { @@ -850,68 +560,8 @@ Info 72 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:21.000] response: { "response": { @@ -962,36 +612,6 @@ Info 74 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:23.000] Search path: /user/username/projects/myproject/dependency Info 76 [00:02:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 77 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file @@ -1008,7 +628,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -1123,74 +743,10 @@ Info 79 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:28.000] Search path: /user/username/projects/myproject/dependency Info 81 [00:02:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:30.000] response: { "response": { @@ -1285,74 +841,10 @@ Info 83 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:02:32.000] Search path: /user/username/projects/myproject/dependency Info 85 [00:02:33.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:02:34.000] response: { "response": { @@ -1447,74 +939,10 @@ Info 87 [00:02:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:02:36.000] Search path: /user/username/projects/myproject/dependency Info 89 [00:02:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:02:38.000] response: { "response": { @@ -1600,82 +1028,18 @@ Info 91 [00:02:39.000] request: { "command": "rename", "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 5, - "offset": 17 - }, - "seq": 13, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -Info 92 [00:02:40.000] Search path: /user/username/projects/myproject/dependency -Info 93 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 5, + "offset": 17 + }, + "seq": 13, + "type": "request" + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +Info 92 [00:02:40.000] Search path: /user/username/projects/myproject/dependency +Info 93 [00:02:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request Info 94 [00:02:42.000] response: { @@ -1769,38 +1133,6 @@ Info 95 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 97 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 97 [00:02:46.000] Files (3) @@ -1844,7 +1176,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1870,40 +1202,6 @@ Info 98 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 100 [00:03:02.000] Search path: /user/username/projects/myproject/random Info 101 [00:03:03.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1952,6 +1250,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1975,38 +1277,6 @@ Info 103 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 105 [00:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 105 [00:03:24.000] Files (3) @@ -2050,7 +1320,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2076,40 +1346,6 @@ Info 106 [00:03:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 108 [00:03:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 108 [00:03:41.000] Files (3) @@ -2153,7 +1389,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2179,42 +1415,6 @@ Info 109 [00:03:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:03:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 111 [00:03:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 111 [00:03:56.000] Files (3) @@ -2258,7 +1458,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2284,44 +1484,6 @@ Info 112 [00:04:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:04:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 114 [00:04:08.000] Search path: /user/username/projects/myproject/random Info 115 [00:04:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2388,16 +1550,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} + Info 143 [00:04:43.000] response: { "responseRequired": false 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 900b2d57eff57..2fd6285c6dc9b 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -860,40 +704,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:55.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -944,40 +754,6 @@ Info 86 [00:03:35.000] FileName: /user/username/projects/myproject/random/ran Info 86 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:37.000] request: { "command": "definitionAndBoundSpan", @@ -991,75 +767,7 @@ Info 86 [00:03:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 87 [00:03:38.000] response: { @@ -1111,76 +819,8 @@ Info 88 [00:03:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:40.000] response: { "response": { @@ -1231,76 +871,8 @@ Info 90 [00:03:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:42.000] response: { "response": { @@ -1351,76 +923,8 @@ Info 92 [00:03:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:44.000] response: { "response": { @@ -1471,76 +975,8 @@ Info 94 [00:03:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:46.000] response: { "response": { @@ -1591,78 +1027,10 @@ Info 96 [00:03:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:48.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:49.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:50.000] response: { "response": { @@ -1731,104 +1099,36 @@ Info 99 [00:03:50.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 100 [00:03:51.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 100 [00:03:51.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 101 [00:03:52.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:54.000] response: { "response": { @@ -1923,78 +1223,10 @@ Info 104 [00:03:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:56.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:57.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:58.000] response: { "response": { @@ -2089,78 +1321,10 @@ Info 108 [00:03:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:04:00.000] Search path: /user/username/projects/myproject/dependency Info 110 [00:04:01.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:04:02.000] response: { "response": { @@ -2255,78 +1419,10 @@ Info 112 [00:04:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:04:04.000] Search path: /user/username/projects/myproject/dependency Info 114 [00:04:05.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 115 [00:04:06.000] response: { "response": { 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 7ad426879ec12..9011f9019a469 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -871,79 +715,11 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 79 [00:02:58.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:59.000] response: { "response": { @@ -994,75 +770,7 @@ Info 81 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 82 [00:03:01.000] response: { @@ -1114,76 +822,8 @@ Info 83 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:03.000] response: { "response": { @@ -1234,76 +874,8 @@ Info 85 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:05.000] response: { "response": { @@ -1354,76 +926,8 @@ Info 87 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:07.000] response: { "response": { @@ -1474,80 +978,12 @@ Info 89 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 91 [00:03:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 92 [00:03:11.000] Search path: /user/username/projects/myproject/dependency Info 93 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:13.000] response: { "response": { @@ -1616,104 +1052,36 @@ Info 94 [00:03:13.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 95 [00:03:14.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 95 [00:03:14.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 96 [00:03:15.000] Search path: /user/username/projects/myproject/dependency Info 97 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:17.000] response: { "response": { @@ -1808,78 +1176,10 @@ Info 99 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 100 [00:03:19.000] Search path: /user/username/projects/myproject/dependency Info 101 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:03:21.000] response: { "response": { @@ -1974,78 +1274,10 @@ Info 103 [00:03:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:23.000] Search path: /user/username/projects/myproject/dependency Info 105 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:03:25.000] response: { "response": { @@ -2140,78 +1372,10 @@ Info 107 [00:03:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:27.000] Search path: /user/username/projects/myproject/dependency Info 109 [00:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:03:29.000] response: { "response": { 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 7ebe536410786..4b5724038a8f3 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 @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -290,25 +284,25 @@ Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 27 [00:01:37.000] response: @@ -326,28 +320,6 @@ Info 28 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 29 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 31 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -391,7 +363,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -425,30 +397,6 @@ Info 44 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 45 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 46 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 47 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -509,7 +457,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -519,7 +467,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -529,7 +477,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 61 [00:02:38.000] response: @@ -549,68 +497,8 @@ Info 62 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:40.000] response: { "response": { @@ -661,36 +549,6 @@ Info 64 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -703,7 +561,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -816,6 +674,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/main/tsconfig.json: {} @@ -825,7 +687,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} FsWatchesRecursive:: @@ -881,7 +743,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -944,76 +806,8 @@ Info 88 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:08.000] response: { "response": { @@ -1064,75 +858,7 @@ Info 90 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 91 [00:03:10.000] response: { @@ -1184,76 +910,8 @@ Info 92 [00:03:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:12.000] response: { "response": { @@ -1304,76 +962,8 @@ Info 94 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:14.000] response: { "response": { @@ -1424,80 +1014,12 @@ Info 96 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 98 [00:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 99 [00:03:18.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:20.000] response: { "response": { @@ -1577,93 +1099,25 @@ Info 101 [00:03:20.000] response: } ] }, - "responseRequired": true - } -Info 102 [00:03:21.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "responseRequired": true + } +Info 102 [00:03:21.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 103 [00:03:22.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:24.000] response: { "response": { @@ -1758,78 +1212,10 @@ Info 106 [00:03:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:26.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:28.000] response: { "response": { @@ -1924,78 +1310,10 @@ Info 110 [00:03:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 111 [00:03:30.000] Search path: /user/username/projects/myproject/dependency Info 112 [00:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:03:32.000] response: { "response": { @@ -2090,78 +1408,10 @@ Info 114 [00:03:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 115 [00:03:34.000] Search path: /user/username/projects/myproject/dependency -Info 116 [00:03:35.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 115 [00:03:34.000] Search path: /user/username/projects/myproject/dependency +Info 116 [00:03:35.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 117 [00:03:36.000] response: { "response": { @@ -2254,40 +1504,6 @@ Info 118 [00:03:37.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 119 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 120 [00:03:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 120 [00:03:40.000] Files (3) @@ -2331,7 +1547,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2359,42 +1575,6 @@ Info 121 [00:03:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 122 [00:03:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 123 [00:03:56.000] Search path: /user/username/projects/myproject/random Info 124 [00:03:57.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2443,6 +1623,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2468,40 +1652,6 @@ Info 126 [00:04:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 127 [00:04:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 128 [00:04:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 128 [00:04:18.000] Files (3) @@ -2545,7 +1695,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2573,42 +1723,6 @@ Info 129 [00:04:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 130 [00:04:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 131 [00:04:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 131 [00:04:35.000] Files (3) @@ -2652,7 +1766,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2680,44 +1794,6 @@ Info 132 [00:04:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 133 [00:04:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 134 [00:04:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 134 [00:04:50.000] Files (3) @@ -2761,7 +1837,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2789,46 +1865,6 @@ Info 135 [00:05:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 136 [00:05:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 137 [00:05:02.000] Search path: /user/username/projects/myproject/random Info 138 [00:05:03.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2897,16 +1933,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 168 [00:05:39.000] response: { "responseRequired": false 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 6467680b6abbd..79b5347b74874 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -889,6 +733,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -915,38 +763,6 @@ Info 84 [00:03:01.000] Files (2) Info 85 [00:03:02.000] ----------------------------------------------- After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:03.000] response: { "response": { @@ -997,72 +813,8 @@ Info 87 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:05.000] response: { "response": { @@ -1113,72 +865,8 @@ Info 89 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:07.000] response: { "response": { @@ -1229,72 +917,8 @@ Info 91 [00:03:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:09.000] response: { "response": { @@ -1345,72 +969,8 @@ Info 93 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:11.000] response: { "response": { @@ -1461,38 +1021,6 @@ Info 95 [00:03:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 97 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 98 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file @@ -1507,7 +1035,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -1593,76 +1121,8 @@ Info 100 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:18.000] response: { "response": { @@ -1724,76 +1184,8 @@ Info 102 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:20.000] response: { "response": { @@ -1855,76 +1247,8 @@ Info 104 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:22.000] response: { "response": { @@ -1983,78 +1307,10 @@ Info 106 [00:03:23.000] request: }, "seq": 15, "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 107 [00:03:24.000] response: { @@ -2115,40 +1371,6 @@ Info 108 [00:03:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 110 [00:03:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 110 [00:03:28.000] Files (2) @@ -2192,7 +1414,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2220,42 +1442,6 @@ Info 111 [00:03:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:03:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 113 [00:03:44.000] Search path: /user/username/projects/myproject/random Info 114 [00:03:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2303,6 +1489,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2328,38 +1520,6 @@ Info 117 [00:04:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 118 [00:04:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 119 [00:04:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 119 [00:04:07.000] Files (2) @@ -2401,7 +1561,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2429,40 +1589,6 @@ Info 120 [00:04:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 121 [00:04:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 122 [00:04:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 122 [00:04:24.000] Files (2) @@ -2504,7 +1630,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2532,42 +1658,6 @@ Info 123 [00:04:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 124 [00:04:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 125 [00:04:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 125 [00:04:39.000] Files (2) @@ -2609,7 +1699,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2637,44 +1727,6 @@ Info 126 [00:04:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 127 [00:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 128 [00:04:51.000] Search path: /user/username/projects/myproject/random Info 129 [00:04:52.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2738,16 +1790,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 157 [00:05:26.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js index 8d3d03b23a22d..4d2d88e12a3ea 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -290,25 +284,25 @@ Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 27 [00:01:37.000] response: @@ -326,28 +320,6 @@ Info 28 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 29 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 30 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 31 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -391,7 +363,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -425,30 +397,6 @@ Info 44 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 45 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 46 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 47 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -509,7 +457,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -519,7 +467,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -529,7 +477,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 61 [00:02:38.000] response: @@ -549,68 +497,8 @@ Info 62 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:40.000] response: { "response": { @@ -661,68 +549,8 @@ Info 64 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:42.000] response: { "response": { @@ -773,68 +601,8 @@ Info 66 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:44.000] response: { "response": { @@ -885,67 +653,7 @@ Info 68 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 69 [00:02:46.000] response: { @@ -997,68 +705,8 @@ Info 70 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:48.000] response: { "response": { @@ -1109,36 +757,6 @@ Info 72 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request @@ -1151,7 +769,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {"pollingInterval":2000} FsWatches:: @@ -1235,72 +853,8 @@ Info 75 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:53.000] response: { "response": { @@ -1362,72 +916,8 @@ Info 77 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:55.000] response: { "response": { @@ -1489,72 +979,8 @@ Info 79 [00:02:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:57.000] response: { "response": { @@ -1607,80 +1033,16 @@ Info 81 [00:02:58.000] request: { "command": "rename", "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 5, - "offset": 17 - }, - "seq": 13, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 5, + "offset": 17 + }, + "seq": 13, + "type": "request" + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 82 [00:02:59.000] response: { @@ -1741,38 +1103,6 @@ Info 83 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 85 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 85 [00:03:03.000] Files (2) @@ -1814,7 +1144,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1842,40 +1172,6 @@ Info 86 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 88 [00:03:19.000] Search path: /user/username/projects/myproject/random Info 89 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1922,6 +1218,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1947,38 +1247,6 @@ Info 91 [00:03:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 93 [00:03:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 93 [00:03:41.000] Files (2) @@ -2020,7 +1288,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2048,40 +1316,6 @@ Info 94 [00:03:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 96 [00:03:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 96 [00:03:58.000] Files (2) @@ -2123,7 +1357,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2151,42 +1385,6 @@ Info 97 [00:04:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:04:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 99 [00:04:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 99 [00:04:13.000] Files (2) @@ -2228,7 +1426,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2256,44 +1454,6 @@ Info 100 [00:04:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:04:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 102 [00:04:25.000] Search path: /user/username/projects/myproject/random Info 103 [00:04:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2357,16 +1517,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 131 [00:05:00.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index e444097691f66..6a6e97514aa0d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -854,40 +698,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:55.000] Running: /user/username/projects/myproject/dependency/tsconfig.json Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -937,40 +747,6 @@ Info 85 [00:03:34.000] FileName: /user/username/projects/myproject/random/ran Info 85 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:36.000] request: { "command": "definitionAndBoundSpan", @@ -984,75 +760,7 @@ Info 85 [00:03:36.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 86 [00:03:37.000] response: { @@ -1104,76 +812,8 @@ Info 87 [00:03:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:39.000] response: { "response": { @@ -1224,76 +864,8 @@ Info 89 [00:03:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 90 [00:03:41.000] response: { "response": { @@ -1344,76 +916,8 @@ Info 91 [00:03:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 92 [00:03:43.000] response: { "response": { @@ -1464,76 +968,8 @@ Info 93 [00:03:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 94 [00:03:45.000] response: { "response": { @@ -1584,78 +1020,10 @@ Info 95 [00:03:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:47.000] Search path: /user/username/projects/myproject/dependency Info 97 [00:03:48.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:49.000] response: { "response": { @@ -1724,104 +1092,36 @@ Info 98 [00:03:49.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 99 [00:03:50.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 99 [00:03:50.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 100 [00:03:51.000] Search path: /user/username/projects/myproject/dependency Info 101 [00:03:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:03:53.000] response: { "response": { @@ -1916,78 +1216,10 @@ Info 103 [00:03:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 104 [00:03:55.000] Search path: /user/username/projects/myproject/dependency Info 105 [00:03:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:03:57.000] response: { "response": { @@ -2082,78 +1314,10 @@ Info 107 [00:03:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:59.000] Search path: /user/username/projects/myproject/dependency Info 109 [00:04:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 110 [00:04:01.000] response: { "response": { @@ -2248,78 +1412,10 @@ Info 111 [00:04:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:04:03.000] Search path: /user/username/projects/myproject/dependency Info 113 [00:04:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 114 [00:04:05.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js index ac14be01b3acf..6e445626e0964 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -865,78 +709,10 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 78 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:02:58.000] response: { "response": { @@ -987,75 +763,7 @@ Info 80 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 81 [00:03:00.000] response: { @@ -1107,76 +815,8 @@ Info 82 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:03:02.000] response: { "response": { @@ -1227,76 +867,8 @@ Info 84 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:04.000] response: { "response": { @@ -1347,76 +919,8 @@ Info 86 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:06.000] response: { "response": { @@ -1467,80 +971,12 @@ Info 88 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 90 [00:03:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 91 [00:03:10.000] Search path: /user/username/projects/myproject/dependency Info 92 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:12.000] response: { "response": { @@ -1609,104 +1045,36 @@ Info 93 [00:03:12.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 94 [00:03:13.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 94 [00:03:13.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 95 [00:03:14.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:16.000] response: { "response": { @@ -1801,78 +1169,10 @@ Info 98 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:18.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:20.000] response: { "response": { @@ -1967,78 +1267,10 @@ Info 102 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:22.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:24.000] response: { "response": { @@ -2133,78 +1365,10 @@ Info 106 [00:03:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:26.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:28.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js index 733d08206d322..2c6e852408063 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -299,27 +293,27 @@ Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:38.000] response: @@ -337,30 +331,6 @@ Info 29 [00:01:39.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -404,7 +374,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -440,32 +410,6 @@ Info 45 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:07.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -526,7 +470,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -538,7 +482,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -548,7 +492,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:39.000] response: @@ -568,38 +512,6 @@ Info 63 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -612,7 +524,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -687,76 +599,8 @@ Info 66 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:44.000] response: { "response": { @@ -840,6 +684,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/main/tsconfig.json: {} @@ -888,7 +736,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -951,76 +799,8 @@ Info 82 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:03:02.000] response: { "response": { @@ -1071,75 +851,7 @@ Info 84 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 85 [00:03:04.000] response: { @@ -1191,76 +903,8 @@ Info 86 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:06.000] response: { "response": { @@ -1311,76 +955,8 @@ Info 88 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:08.000] response: { "response": { @@ -1431,80 +1007,12 @@ Info 90 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 92 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms Info 93 [00:03:12.000] Search path: /user/username/projects/myproject/dependency Info 94 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:14.000] response: { "response": { @@ -1584,93 +1092,25 @@ Info 95 [00:03:14.000] response: } ] }, - "responseRequired": true - } -Info 96 [00:03:15.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "responseRequired": true + } +Info 96 [00:03:15.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request Info 97 [00:03:16.000] Search path: /user/username/projects/myproject/dependency Info 98 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:18.000] response: { "response": { @@ -1765,78 +1205,10 @@ Info 100 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:20.000] Search path: /user/username/projects/myproject/dependency Info 102 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:22.000] response: { "response": { @@ -1931,78 +1303,10 @@ Info 104 [00:03:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:24.000] Search path: /user/username/projects/myproject/dependency Info 106 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:26.000] response: { "response": { @@ -2097,78 +1401,10 @@ Info 108 [00:03:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 109 [00:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 110 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 109 [00:03:28.000] Search path: /user/username/projects/myproject/dependency +Info 110 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 111 [00:03:30.000] response: { "response": { @@ -2261,40 +1497,6 @@ Info 112 [00:03:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 114 [00:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 114 [00:03:34.000] Files (3) @@ -2338,7 +1540,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2366,42 +1568,6 @@ Info 115 [00:03:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 116 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 117 [00:03:50.000] Search path: /user/username/projects/myproject/random Info 118 [00:03:51.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2450,6 +1616,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2475,40 +1645,6 @@ Info 120 [00:04:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 121 [00:04:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 122 [00:04:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 122 [00:04:12.000] Files (3) @@ -2552,7 +1688,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2580,42 +1716,6 @@ Info 123 [00:04:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 124 [00:04:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 125 [00:04:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 125 [00:04:29.000] Files (3) @@ -2659,7 +1759,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2687,44 +1787,6 @@ Info 126 [00:04:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 127 [00:04:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 128 [00:04:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 128 [00:04:44.000] Files (3) @@ -2768,7 +1830,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2796,46 +1858,6 @@ Info 129 [00:04:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 130 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 131 [00:04:56.000] Search path: /user/username/projects/myproject/random Info 132 [00:04:57.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2903,16 +1925,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 161 [00:05:32.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js index 120103037da32..5bb6cd3cd6b55 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -888,6 +732,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -912,7 +760,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -987,76 +835,8 @@ Info 84 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:02.000] response: { "response": { @@ -1107,75 +887,7 @@ Info 86 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 87 [00:03:04.000] response: { @@ -1227,76 +939,8 @@ Info 88 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:06.000] response: { "response": { @@ -1347,76 +991,8 @@ Info 90 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:08.000] response: { "response": { @@ -1467,78 +1043,10 @@ Info 92 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 94 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:12.000] response: { "response": { @@ -1585,91 +1093,23 @@ Info 95 [00:03:12.000] response: } ] }, - "responseRequired": true - } -Info 96 [00:03:13.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 12, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "responseRequired": true + } +Info 96 [00:03:13.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 12, + "type": "request" + } +Before request After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:14.000] response: { "response": { @@ -1731,76 +1171,8 @@ Info 98 [00:03:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:16.000] response: { "response": { @@ -1862,76 +1234,8 @@ Info 100 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:18.000] response: { "response": { @@ -1990,78 +1294,10 @@ Info 102 [00:03:19.000] request: }, "seq": 15, "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + } +Before request + +After request Info 103 [00:03:20.000] response: { @@ -2122,40 +1358,6 @@ Info 104 [00:03:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 106 [00:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 106 [00:03:24.000] Files (3) @@ -2199,7 +1401,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2227,42 +1429,6 @@ Info 107 [00:03:38.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 108 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 109 [00:03:40.000] Search path: /user/username/projects/myproject/random Info 110 [00:03:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2311,6 +1477,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2336,40 +1506,6 @@ Info 112 [00:03:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 113 [00:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 114 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 114 [00:04:02.000] Files (3) @@ -2413,7 +1549,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2441,42 +1577,6 @@ Info 115 [00:04:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 116 [00:04:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 117 [00:04:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 117 [00:04:19.000] Files (3) @@ -2520,7 +1620,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2548,44 +1648,6 @@ Info 118 [00:04:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 119 [00:04:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 120 [00:04:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 120 [00:04:34.000] Files (3) @@ -2629,7 +1691,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2657,46 +1719,6 @@ Info 121 [00:04:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 122 [00:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 123 [00:04:46.000] Search path: /user/username/projects/myproject/random Info 124 [00:04:47.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2764,16 +1786,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 153 [00:05:22.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js index aa3a5c9184feb..162ed0b63a24e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -299,27 +293,27 @@ Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:38.000] response: @@ -337,30 +331,6 @@ Info 29 [00:01:39.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -404,7 +374,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -440,32 +410,6 @@ Info 45 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:07.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -526,7 +470,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -538,7 +482,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -548,7 +492,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:39.000] response: @@ -568,38 +512,6 @@ Info 63 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -612,7 +524,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -687,76 +599,8 @@ Info 66 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:44.000] response: { "response": { @@ -807,76 +651,8 @@ Info 68 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:46.000] response: { "response": { @@ -927,75 +703,7 @@ Info 70 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 71 [00:02:48.000] response: { @@ -1047,76 +755,8 @@ Info 72 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:50.000] response: { "response": { @@ -1167,76 +807,8 @@ Info 74 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:52.000] response: { "response": { @@ -1298,76 +870,8 @@ Info 76 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:54.000] response: { "response": { @@ -1429,76 +933,8 @@ Info 78 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:02:56.000] response: { "response": { @@ -1560,76 +996,8 @@ Info 80 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:58.000] response: { "response": { @@ -1688,78 +1056,10 @@ Info 82 [00:02:59.000] request: }, "seq": 13, "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + } +Before request + +After request Info 83 [00:03:00.000] response: { @@ -1820,40 +1120,6 @@ Info 84 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 86 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 86 [00:03:04.000] Files (3) @@ -1897,7 +1163,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1925,42 +1191,6 @@ Info 87 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 89 [00:03:20.000] Search path: /user/username/projects/myproject/random Info 90 [00:03:21.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2009,6 +1239,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2034,40 +1268,6 @@ Info 92 [00:03:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 94 [00:03:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 94 [00:03:42.000] Files (3) @@ -2111,7 +1311,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2139,42 +1339,6 @@ Info 95 [00:03:56.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 96 [00:03:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 97 [00:03:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 97 [00:03:59.000] Files (3) @@ -2218,7 +1382,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2246,44 +1410,6 @@ Info 98 [00:04:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 100 [00:04:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 100 [00:04:14.000] Files (3) @@ -2327,7 +1453,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2355,46 +1481,6 @@ Info 101 [00:04:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 102 [00:04:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 103 [00:04:26.000] Search path: /user/username/projects/myproject/random Info 104 [00:04:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2462,16 +1548,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 133 [00:05:02.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/gotoDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/gotoDef-and-rename-locations.js index 4a60abaebc58b..2fc388f859288 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/gotoDef-and-rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/gotoDef-and-rename-locations.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,76 +602,8 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] response: { "response": { @@ -810,76 +654,8 @@ Info 68 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -930,75 +706,7 @@ Info 70 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 71 [00:02:47.000] response: { @@ -1050,76 +758,8 @@ Info 72 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:49.000] response: { "response": { @@ -1170,78 +810,10 @@ Info 74 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:51.000] Search path: /user/username/projects/myproject/dependency Info 76 [00:02:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:53.000] response: { "response": { @@ -1336,78 +908,10 @@ Info 78 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:02:55.000] Search path: /user/username/projects/myproject/dependency Info 80 [00:02:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:02:57.000] response: { "response": { @@ -1502,78 +1006,10 @@ Info 82 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:02:59.000] Search path: /user/username/projects/myproject/dependency Info 84 [00:03:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:01.000] response: { "response": { @@ -1668,78 +1104,10 @@ Info 86 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:03.000] Search path: /user/username/projects/myproject/dependency Info 88 [00:03:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 89 [00:03:05.000] response: { "response": { @@ -1834,78 +1202,10 @@ Info 90 [00:03:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependency -Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - +Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependency +Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +After request + Info 93 [00:03:09.000] response: { "response": { @@ -1998,40 +1298,6 @@ Info 94 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 95 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 96 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 96 [00:03:13.000] Files (3) @@ -2075,7 +1341,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2103,42 +1369,6 @@ Info 97 [00:03:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 98 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 99 [00:03:29.000] Search path: /user/username/projects/myproject/random Info 100 [00:03:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2187,6 +1417,10 @@ FsWatches:: /user/username/projects/myproject/decls/fns.d.ts.map: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -2212,40 +1446,6 @@ Info 102 [00:03:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 104 [00:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 104 [00:03:51.000] Files (3) @@ -2289,7 +1489,7 @@ FsWatches:: {} /user/username/projects/myproject/decls/fns.d.ts.map: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -2317,42 +1517,6 @@ Info 105 [00:04:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 106 [00:04:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info 107 [00:04:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 107 [00:04:08.000] Files (3) @@ -2396,7 +1560,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -2424,44 +1588,6 @@ Info 108 [00:04:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:04:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 110 [00:04:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 110 [00:04:23.000] Files (3) @@ -2505,7 +1631,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -2533,46 +1659,6 @@ Info 111 [00:04:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 112 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 113 [00:04:35.000] Search path: /user/username/projects/myproject/random Info 114 [00:04:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -2640,16 +1726,46 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/dependency/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 143 [00:05:11.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index 9144b39707e7c..328da3365e823 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -859,76 +703,8 @@ Info 70 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:47.000] response: { "responseRequired": false @@ -949,75 +725,7 @@ Info 72 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 73 [00:02:49.000] response: { @@ -1025,76 +733,8 @@ Info 73 [00:02:49.000] response: } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:50.000] request: { "command": "definitionAndBoundSpan", @@ -1108,79 +748,11 @@ Info 74 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 76 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 77 [00:02:53.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:54.000] response: { "response": { @@ -1231,76 +803,8 @@ Info 79 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:56.000] response: { "response": { @@ -1351,76 +855,8 @@ Info 81 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:58.000] response: { "response": { @@ -1471,76 +907,8 @@ Info 83 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:00.000] response: { "response": { @@ -1591,76 +959,8 @@ Info 85 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:02.000] response: { "response": { @@ -1711,40 +1011,6 @@ Info 87 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 89 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 90 [00:03:06.000] Different program with same set of files @@ -1752,40 +1018,6 @@ Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependen Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:09.000] response: { "response": { @@ -1854,104 +1086,36 @@ Info 93 [00:03:09.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 94 [00:03:10.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 14, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 94 [00:03:10.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 14, + "type": "request" + } +Before request Info 95 [00:03:11.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:13.000] response: { "response": { @@ -2046,78 +1210,10 @@ Info 98 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:15.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] response: { "response": { @@ -2212,78 +1308,10 @@ Info 102 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] response: { "response": { @@ -2378,78 +1406,10 @@ Info 106 [00:03:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js index 2ebbe49a7f619..65f26e1cb9237 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/dependency Info 31 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: +/user/username/projects/myproject/dependency/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -443,32 +413,6 @@ Info 45 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 46 [00:02:06.000] Search path: /user/username/projects/myproject/random Info 47 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 48 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -529,7 +473,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/dependency/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -541,7 +485,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -551,7 +495,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 62 [00:02:38.000] response: @@ -571,38 +515,6 @@ Info 63 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request @@ -627,7 +539,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} FsWatchesRecursive:: @@ -690,78 +602,10 @@ Info 66 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:43.000] Search path: /user/username/projects/myproject/dependency Info 68 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:45.000] response: { "response": { @@ -859,76 +703,8 @@ Info 70 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:47.000] response: { "responseRequired": false @@ -949,75 +725,7 @@ Info 72 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 73 [00:02:49.000] response: { @@ -1036,79 +744,11 @@ Info 74 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 76 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 77 [00:02:53.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:54.000] response: { "response": { @@ -1159,76 +799,8 @@ Info 79 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:02:56.000] response: { "response": { @@ -1279,76 +851,8 @@ Info 81 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:02:58.000] response: { "response": { @@ -1399,76 +903,8 @@ Info 83 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:00.000] response: { "response": { @@ -1519,76 +955,8 @@ Info 85 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:02.000] response: { "response": { @@ -1639,40 +1007,6 @@ Info 87 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info 89 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 90 [00:03:06.000] Different program with same set of files @@ -1680,40 +1014,6 @@ Info 91 [00:03:07.000] Search path: /user/username/projects/myproject/dependen Info 92 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 93 [00:03:09.000] response: { "response": { @@ -1782,104 +1082,36 @@ Info 93 [00:03:09.000] response: { "start": { "line": 9, - "offset": 1 - }, - "end": { - "line": 9, - "offset": 4 - } - } - ] - } - ] - }, - "responseRequired": true - } -Info 94 [00:03:10.000] request: - { - "command": "rename", - "arguments": { - "file": "/user/username/projects/myproject/dependency/FnS.ts", - "line": 2, - "offset": 17 - }, - "seq": 14, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} + "offset": 1 + }, + "end": { + "line": 9, + "offset": 4 + } + } + ] + } + ] + }, + "responseRequired": true + } +Info 94 [00:03:10.000] request: + { + "command": "rename", + "arguments": { + "file": "/user/username/projects/myproject/dependency/FnS.ts", + "line": 2, + "offset": 17 + }, + "seq": 14, + "type": "request" + } +Before request Info 95 [00:03:11.000] Search path: /user/username/projects/myproject/dependency Info 96 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 97 [00:03:13.000] response: { "response": { @@ -1974,78 +1206,10 @@ Info 98 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 99 [00:03:15.000] Search path: /user/username/projects/myproject/dependency Info 100 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 101 [00:03:17.000] response: { "response": { @@ -2140,78 +1304,10 @@ Info 102 [00:03:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 103 [00:03:19.000] Search path: /user/username/projects/myproject/dependency Info 104 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 105 [00:03:21.000] response: { "response": { @@ -2306,78 +1402,10 @@ Info 106 [00:03:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 107 [00:03:23.000] Search path: /user/username/projects/myproject/dependency Info 108 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/dependency/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 109 [00:03:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js index 40968e00bf9a5..eab6a14780682 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -535,68 +483,8 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] response: { "response": { @@ -647,68 +535,8 @@ Info 49 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -759,68 +587,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -871,68 +639,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -981,36 +689,6 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 57 [00:02:18.000] Files (3) @@ -1046,7 +724,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1072,38 +750,6 @@ Info 58 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 60 [00:02:29.000] Search path: /user/username/projects/myproject/random Info 61 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1144,6 +790,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1167,36 +817,6 @@ Info 63 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 65 [00:02:46.000] Files (3) @@ -1232,7 +852,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1258,38 +878,6 @@ Info 66 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:02:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 68 [00:02:58.000] Files (3) @@ -1325,7 +913,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1351,40 +939,6 @@ Info 69 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 71 [00:03:07.000] Search path: /user/username/projects/myproject/random Info 72 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1432,16 +986,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} + Info 90 [00:03:32.000] response: { "responseRequired": false 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 23a2a8d4c8e3b..79343f2d4bb23 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -537,36 +485,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:14.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -602,36 +520,6 @@ Info 58 [00:02:41.000] FileName: /user/username/projects/myproject/random/ran Info 58 [00:02:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:43.000] request: { "command": "definitionAndBoundSpan", @@ -645,68 +533,8 @@ Info 58 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:44.000] response: { "response": { @@ -757,68 +585,8 @@ Info 60 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:46.000] response: { "response": { @@ -869,68 +637,8 @@ Info 62 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:48.000] response: { "response": { @@ -981,68 +689,8 @@ Info 64 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:50.000] response: { "response": { @@ -1093,68 +741,8 @@ Info 66 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:52.000] response: { "response": { 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 1a343f64722fe..966f6fa66576f 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -548,71 +496,11 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 54 [00:02:17.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] response: { "response": { @@ -663,68 +551,8 @@ Info 56 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:20.000] response: { "response": { @@ -775,68 +603,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { @@ -887,68 +655,8 @@ Info 60 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:24.000] response: { "response": { @@ -999,68 +707,8 @@ Info 62 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:26.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js index d695a99d170a9..22bff5228b1d2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -269,21 +263,21 @@ Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 23 [00:01:33.000] response: @@ -301,24 +295,6 @@ Info 24 [00:01:34.000] request: } Before request -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 25 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 26 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 27 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +347,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,7 +355,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -387,7 +363,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 41 [00:02:02.000] response: @@ -407,56 +383,8 @@ Info 42 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 43 [00:02:04.000] response: { "response": { @@ -518,30 +446,6 @@ export declare function fn5(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* Info 49 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 50 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info @@ -580,11 +484,11 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -645,68 +549,8 @@ Info 58 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { @@ -757,68 +601,8 @@ Info 60 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:24.000] response: { "response": { @@ -869,67 +653,7 @@ Info 62 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 63 [00:02:26.000] response: { @@ -981,68 +705,8 @@ Info 64 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:28.000] response: { "response": { @@ -1091,36 +755,6 @@ Info 66 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 68 [00:02:32.000] Files (3) @@ -1156,7 +790,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1182,38 +816,6 @@ Info 69 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 71 [00:02:43.000] Search path: /user/username/projects/myproject/random Info 72 [00:02:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1254,6 +856,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1277,36 +883,6 @@ Info 74 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 76 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 76 [00:03:00.000] Files (3) @@ -1342,7 +918,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1368,38 +944,6 @@ Info 77 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:03:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 79 [00:03:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 79 [00:03:12.000] Files (3) @@ -1435,7 +979,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1461,40 +1005,6 @@ Info 80 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 82 [00:03:21.000] Search path: /user/username/projects/myproject/random Info 83 [00:03:22.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1542,16 +1052,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} + Info 101 [00:03:46.000] response: { "responseRequired": false 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 5e22432bd7463..04c49f3738633 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -564,6 +512,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -588,34 +540,6 @@ Info 59 [00:02:20.000] Files (2) Info 60 [00:02:21.000] ----------------------------------------------- After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:22.000] response: { "response": { @@ -666,64 +590,8 @@ Info 62 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:24.000] response: { "response": { @@ -774,64 +642,8 @@ Info 64 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:26.000] response: { "response": { @@ -882,64 +694,8 @@ Info 66 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:28.000] response: { "response": { @@ -990,64 +746,8 @@ Info 68 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:30.000] response: { "response": { @@ -1096,34 +796,6 @@ Info 70 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 72 [00:02:34.000] Files (2) @@ -1157,7 +829,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1183,36 +855,6 @@ Info 73 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:02:45.000] Search path: /user/username/projects/myproject/random Info 76 [00:02:46.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1249,6 +891,14 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1272,30 +922,6 @@ Info 80 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 82 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 82 [00:03:04.000] Files (2) @@ -1325,7 +951,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1351,32 +977,6 @@ Info 83 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 85 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 85 [00:03:16.000] Files (2) @@ -1406,7 +1006,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1432,34 +1032,6 @@ Info 86 [00:03:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 88 [00:03:25.000] Search path: /user/username/projects/myproject/random Info 89 [00:03:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1501,16 +1073,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} + Info 104 [00:03:47.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js index 86d9effa636b7..bde8304d7d002 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -269,21 +263,21 @@ Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 23 [00:01:33.000] response: @@ -301,24 +295,6 @@ Info 24 [00:01:34.000] request: } Before request -PolledWatches:: -/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: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 25 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 26 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 27 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -371,7 +347,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -379,7 +355,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -387,7 +363,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 41 [00:02:02.000] response: @@ -407,56 +383,8 @@ Info 42 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 43 [00:02:04.000] response: { "response": { @@ -507,56 +435,8 @@ Info 44 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 45 [00:02:06.000] response: { "response": { @@ -607,56 +487,8 @@ Info 46 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:08.000] response: { "response": { @@ -707,56 +539,8 @@ Info 48 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:10.000] response: { "response": { @@ -807,56 +591,8 @@ Info 50 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:12.000] response: { "response": { @@ -905,30 +641,6 @@ Info 52 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 54 [00:02:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 54 [00:02:16.000] Files (2) @@ -958,7 +670,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -984,32 +696,6 @@ Info 55 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 57 [00:02:27.000] Search path: /user/username/projects/myproject/random Info 58 [00:02:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1044,6 +730,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1067,30 +757,6 @@ Info 60 [00:02:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 62 [00:02:44.000] Files (2) @@ -1120,7 +786,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1146,32 +812,6 @@ Info 63 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 65 [00:02:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 65 [00:02:56.000] Files (2) @@ -1201,7 +841,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1227,34 +867,6 @@ Info 66 [00:03:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 68 [00:03:05.000] Search path: /user/username/projects/myproject/random Info 69 [00:03:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1296,16 +908,34 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} + Info 84 [00:03:27.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index 52bdce6fe6ed7..a7cefd553fe3f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -531,36 +479,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:14.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -595,36 +513,6 @@ Info 57 [00:02:40.000] FileName: /user/username/projects/myproject/random/ran Info 57 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:42.000] request: { "command": "definitionAndBoundSpan", @@ -638,68 +526,8 @@ Info 57 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:43.000] response: { "response": { @@ -750,68 +578,8 @@ Info 59 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:45.000] response: { "response": { @@ -862,68 +630,8 @@ Info 61 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:47.000] response: { "response": { @@ -974,68 +682,8 @@ Info 63 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:49.000] response: { "response": { @@ -1086,68 +734,8 @@ Info 65 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:51.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js index ba2086127273e..5913638f9533d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -542,70 +490,10 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:17.000] response: { "response": { @@ -656,68 +544,8 @@ Info 55 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:19.000] response: { "response": { @@ -768,68 +596,8 @@ Info 57 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:21.000] response: { "response": { @@ -880,68 +648,8 @@ Info 59 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:23.000] response: { "response": { @@ -992,68 +700,8 @@ Info 61 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js index f128ff118eeb0..944abdf539fd6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -278,23 +272,23 @@ Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:34.000] response: @@ -312,26 +306,6 @@ Info 25 [00:01:35.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -384,7 +358,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -394,7 +368,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -402,7 +376,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:03.000] response: @@ -422,32 +396,6 @@ Info 43 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -458,7 +406,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -547,6 +495,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/main/tsconfig.json: {} @@ -588,9 +540,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -651,68 +603,8 @@ Info 59 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:23.000] response: { "response": { @@ -763,68 +655,8 @@ Info 61 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:25.000] response: { "response": { @@ -875,68 +707,8 @@ Info 63 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:27.000] response: { "response": { @@ -987,68 +759,8 @@ Info 65 [00:02:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:29.000] response: { "response": { @@ -1097,36 +809,6 @@ Info 67 [00:02:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 68 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 69 [00:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 69 [00:02:33.000] Files (3) @@ -1162,7 +844,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1188,38 +870,6 @@ Info 70 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:44.000] Search path: /user/username/projects/myproject/random Info 73 [00:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1260,6 +910,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1283,36 +937,6 @@ Info 75 [00:02:58.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 77 [00:03:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 77 [00:03:01.000] Files (3) @@ -1348,7 +972,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1374,38 +998,6 @@ Info 78 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 80 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 80 [00:03:13.000] Files (3) @@ -1441,7 +1033,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1467,40 +1059,6 @@ Info 81 [00:03:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 83 [00:03:22.000] Search path: /user/username/projects/myproject/random Info 84 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1548,16 +1106,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} + Info 102 [00:03:47.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js index 87f474cbee733..c6557ad60664a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -563,6 +511,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -583,7 +535,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -656,68 +608,8 @@ Info 59 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:21.000] response: { "response": { @@ -768,68 +660,8 @@ Info 61 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:23.000] response: { "response": { @@ -880,68 +712,8 @@ Info 63 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:25.000] response: { "response": { @@ -992,68 +764,8 @@ Info 65 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:27.000] response: { "response": { @@ -1102,36 +814,6 @@ Info 67 [00:02:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 68 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 69 [00:02:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 69 [00:02:31.000] Files (3) @@ -1167,7 +849,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1193,38 +875,6 @@ Info 70 [00:02:40.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:42.000] Search path: /user/username/projects/myproject/random Info 73 [00:02:43.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1264,6 +914,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1287,34 +943,6 @@ Info 76 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 78 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 78 [00:03:00.000] Files (3) @@ -1348,7 +976,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1374,36 +1002,6 @@ Info 79 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:03:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 81 [00:03:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 81 [00:03:12.000] Files (3) @@ -1437,7 +1035,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1463,38 +1061,6 @@ Info 82 [00:03:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 84 [00:03:21.000] Search path: /user/username/projects/myproject/random Info 85 [00:03:22.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1541,16 +1107,38 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} + Info 102 [00:03:45.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js index 2cb94fc565c1b..c0014019ec98c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -278,23 +272,23 @@ Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:34.000] response: @@ -312,26 +306,6 @@ Info 25 [00:01:35.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -384,7 +358,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -394,7 +368,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -402,7 +376,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:03.000] response: @@ -422,32 +396,6 @@ Info 43 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -458,7 +406,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -529,64 +477,8 @@ Info 46 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:08.000] response: { "response": { @@ -637,64 +529,8 @@ Info 48 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:10.000] response: { "response": { @@ -745,64 +581,8 @@ Info 50 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:12.000] response: { "response": { @@ -853,64 +633,8 @@ Info 52 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:14.000] response: { "response": { @@ -959,34 +683,6 @@ Info 54 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 56 [00:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 56 [00:02:18.000] Files (3) @@ -1020,7 +716,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1046,36 +742,6 @@ Info 57 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 59 [00:02:29.000] Search path: /user/username/projects/myproject/random Info 60 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1114,6 +780,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1137,34 +807,6 @@ Info 62 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 64 [00:02:46.000] Files (3) @@ -1198,7 +840,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1224,36 +866,6 @@ Info 65 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 67 [00:02:58.000] Files (3) @@ -1287,7 +899,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1313,38 +925,6 @@ Info 68 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:03:07.000] Search path: /user/username/projects/myproject/random Info 71 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1391,16 +971,38 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/decls: + {} + Info 88 [00:03:31.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js index 61e6ab27b1606..1c3e52727dbeb 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -538,136 +486,16 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", @@ -681,71 +509,11 @@ Info 49 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 51 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 52 [00:02:12.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] response: { "response": { @@ -796,68 +564,8 @@ Info 54 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:15.000] response: { "response": { @@ -908,68 +616,8 @@ Info 56 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -1020,68 +668,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { @@ -1132,68 +720,8 @@ Info 60 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:21.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js index 0d3e180963ba0..0bd6a7a44bda7 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -281,23 +275,23 @@ Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 24 [00:01:33.000] response: @@ -315,26 +309,6 @@ Info 25 [00:01:34.000] request: } Before request -PolledWatches:: -/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/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} - Info 26 [00:01:35.000] Search path: /user/username/projects/myproject/random Info 27 [00:01:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -387,7 +361,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -397,7 +371,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -405,7 +379,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 42 [00:02:02.000] response: @@ -425,32 +399,6 @@ Info 43 [00:02:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 45 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -472,9 +420,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -538,68 +486,8 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] response: { "responseRequired": false @@ -617,71 +505,11 @@ Info 49 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 51 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 52 [00:02:12.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] response: { "response": { @@ -732,68 +560,8 @@ Info 54 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:15.000] response: { "response": { @@ -844,68 +612,8 @@ Info 56 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -956,68 +664,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { @@ -1068,68 +716,8 @@ Info 60 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:21.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js index f124c6d4f8497..a4caaece8c0a6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -569,68 +479,8 @@ Info 49 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:07.000] response: { "response": { @@ -681,68 +531,8 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:09.000] response: { "response": { @@ -791,69 +581,9 @@ Info 53 [00:02:10.000] request: "seq": 6, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 54 [00:02:11.000] response: { @@ -905,68 +635,8 @@ Info 55 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:13.000] response: { "response": { @@ -1015,36 +685,6 @@ Info 57 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 59 [00:02:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 59 [00:02:17.000] Files (3) @@ -1078,7 +718,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1106,38 +746,6 @@ Info 60 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:28.000] Search path: /user/username/projects/myproject/random Info 63 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1176,6 +784,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1201,36 +813,6 @@ Info 65 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 67 [00:02:45.000] Files (3) @@ -1264,7 +846,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1292,38 +874,6 @@ Info 68 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:02:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 70 [00:02:57.000] Files (3) @@ -1357,7 +907,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1385,40 +935,6 @@ Info 71 [00:03:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 73 [00:03:06.000] Search path: /user/username/projects/myproject/random Info 74 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1467,16 +983,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 93 [00:03:32.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js index ae1c83d9f013d..c5059714936b1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -567,68 +477,8 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", @@ -642,68 +492,8 @@ Info 49 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -754,68 +544,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -866,68 +596,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -978,68 +648,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1090,68 +700,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js index b0375609d2065..597f6a9a11ca6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -578,68 +488,8 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -690,68 +540,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -802,68 +592,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -914,68 +644,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1026,68 +696,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js index bbec2786658b8..ee071d53c7d5d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -293,27 +287,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -331,30 +325,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -419,7 +389,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -429,7 +399,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:04.000] response: @@ -449,68 +419,8 @@ Info 47 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:06.000] response: { "response": { @@ -572,68 +482,8 @@ export declare function fn5(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] response: { "response": { @@ -684,68 +534,8 @@ Info 54 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:15.000] response: { "response": { @@ -796,68 +586,8 @@ Info 56 [00:02:16.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -906,69 +636,9 @@ Info 58 [00:02:18.000] request: "seq": 7, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 59 [00:02:19.000] response: { @@ -1020,68 +690,8 @@ Info 60 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:21.000] response: { "response": { @@ -1130,36 +740,6 @@ Info 62 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 64 [00:02:25.000] Files (3) @@ -1193,7 +773,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1221,38 +801,6 @@ Info 65 [00:02:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:36.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1291,6 +839,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1316,36 +868,6 @@ Info 70 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 72 [00:02:53.000] Files (3) @@ -1379,7 +901,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1407,38 +929,6 @@ Info 73 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 75 [00:03:05.000] Files (3) @@ -1472,7 +962,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1500,40 +990,6 @@ Info 76 [00:03:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:14.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1582,16 +1038,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 98 [00:03:40.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js index 39060fae58219..dd9448c07e426 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -573,68 +483,8 @@ Info 52 [00:02:10.000] request: Before request //// [/user/username/projects/myproject/decls/FnS.d.ts] deleted -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:11.000] response: { "response": { @@ -685,68 +535,8 @@ Info 54 [00:02:12.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:13.000] response: { "response": { @@ -797,68 +587,8 @@ Info 56 [00:02:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:15.000] response: { "response": { @@ -907,69 +637,9 @@ Info 58 [00:02:16.000] request: "seq": 7, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 59 [00:02:17.000] response: { @@ -1021,68 +691,8 @@ Info 60 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:19.000] response: { "response": { @@ -1131,36 +741,6 @@ Info 62 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 64 [00:02:23.000] Files (3) @@ -1194,7 +774,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1222,38 +802,6 @@ Info 65 [00:02:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:34.000] Search path: /user/username/projects/myproject/random Info 68 [00:02:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1292,6 +840,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1317,36 +869,6 @@ Info 70 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 72 [00:02:51.000] Files (3) @@ -1380,7 +902,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1408,38 +930,6 @@ Info 73 [00:03:00.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 75 [00:03:03.000] Files (3) @@ -1473,7 +963,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1501,40 +991,6 @@ Info 76 [00:03:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 77 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 78 [00:03:12.000] Search path: /user/username/projects/myproject/random Info 79 [00:03:13.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1583,16 +1039,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 98 [00:03:38.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js index a2fa3b411708d..8c078a095fc81 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -293,27 +287,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -331,30 +325,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -407,7 +377,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -419,7 +389,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -429,7 +399,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:04.000] response: @@ -449,68 +419,8 @@ Info 47 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:06.000] response: { "response": { @@ -561,68 +471,8 @@ Info 49 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:08.000] response: { "response": { @@ -673,68 +523,8 @@ Info 51 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:10.000] response: { "response": { @@ -783,69 +573,9 @@ Info 53 [00:02:11.000] request: "seq": 6, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 54 [00:02:12.000] response: { @@ -897,68 +627,8 @@ Info 55 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:14.000] response: { "response": { @@ -1007,36 +677,6 @@ Info 57 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 59 [00:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 59 [00:02:18.000] Files (3) @@ -1070,7 +710,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1098,38 +738,6 @@ Info 60 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:29.000] Search path: /user/username/projects/myproject/random Info 63 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1168,6 +776,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1193,36 +805,6 @@ Info 65 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 67 [00:02:46.000] Files (3) @@ -1256,7 +838,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1284,38 +866,6 @@ Info 68 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:02:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 70 [00:02:58.000] Files (3) @@ -1349,7 +899,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1377,40 +927,6 @@ Info 71 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 73 [00:03:07.000] Search path: /user/username/projects/myproject/random Info 74 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1459,16 +975,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 93 [00:03:33.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index b091107c197bc..84c7256266392 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -561,68 +471,8 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", @@ -636,68 +486,8 @@ Info 49 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -748,68 +538,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -860,68 +590,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -972,68 +642,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1084,68 +694,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js index 4509f029360fe..4d87f36d66a16 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -572,68 +482,8 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:10.000] response: { "response": { @@ -684,68 +534,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -796,68 +586,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -908,68 +638,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -1020,68 +690,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js index f890f87081679..33e39c41b7d6c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -298,27 +292,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -336,30 +330,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -412,7 +382,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -424,7 +394,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -434,7 +404,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:04.000] response: @@ -454,68 +424,8 @@ Info 47 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:06.000] response: { "response": { @@ -571,68 +481,8 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -683,68 +533,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -795,68 +585,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -905,69 +635,9 @@ Info 57 [00:02:17.000] request: "seq": 7, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 58 [00:02:18.000] response: { @@ -1019,68 +689,8 @@ Info 59 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:20.000] response: { "response": { @@ -1129,36 +739,6 @@ Info 61 [00:02:21.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 63 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 63 [00:02:24.000] Files (3) @@ -1192,7 +772,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1220,38 +800,6 @@ Info 64 [00:02:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 66 [00:02:35.000] Search path: /user/username/projects/myproject/random Info 67 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1290,6 +838,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1315,36 +867,6 @@ Info 69 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 71 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 71 [00:02:52.000] Files (3) @@ -1378,7 +900,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1406,38 +928,6 @@ Info 72 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 74 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 74 [00:03:04.000] Files (3) @@ -1471,7 +961,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1499,40 +989,6 @@ Info 75 [00:03:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 77 [00:03:13.000] Search path: /user/username/projects/myproject/random Info 78 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1581,16 +1037,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 97 [00:03:39.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js index 6c3e1409a65c9..9f8a3384440d2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -572,68 +482,8 @@ Info 51 [00:02:09.000] request: Before request //// [/user/username/projects/myproject/decls/FnS.d.ts.map] deleted -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:10.000] response: { "response": { @@ -684,68 +534,8 @@ Info 53 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:12.000] response: { "response": { @@ -796,68 +586,8 @@ Info 55 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:14.000] response: { "response": { @@ -906,69 +636,9 @@ Info 57 [00:02:15.000] request: "seq": 7, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 58 [00:02:16.000] response: { @@ -1020,68 +690,8 @@ Info 59 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:18.000] response: { "response": { @@ -1130,36 +740,6 @@ Info 61 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 63 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 63 [00:02:22.000] Files (3) @@ -1193,7 +773,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1221,38 +801,6 @@ Info 64 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 66 [00:02:33.000] Search path: /user/username/projects/myproject/random Info 67 [00:02:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1291,6 +839,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1316,36 +868,6 @@ Info 69 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:02:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 71 [00:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 71 [00:02:50.000] Files (3) @@ -1379,7 +901,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1407,38 +929,6 @@ Info 72 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 74 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 74 [00:03:02.000] Files (3) @@ -1472,7 +962,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1500,40 +990,6 @@ Info 75 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 76 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 77 [00:03:11.000] Search path: /user/username/projects/myproject/random Info 78 [00:03:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1582,16 +1038,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 97 [00:03:37.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js index 5825f9dd36b90..27eccab087607 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -298,27 +292,27 @@ Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:35.000] response: @@ -336,30 +330,6 @@ Info 29 [00:01:36.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:37.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -412,7 +382,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -424,7 +394,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -434,7 +404,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:04.000] response: @@ -454,68 +424,8 @@ Info 47 [00:02:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:06.000] response: { "response": { @@ -566,68 +476,8 @@ Info 49 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:08.000] response: { "response": { @@ -678,68 +528,8 @@ Info 51 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:10.000] response: { "response": { @@ -788,69 +578,9 @@ Info 53 [00:02:11.000] request: "seq": 6, "type": "request" } -Before request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 54 [00:02:12.000] response: { @@ -902,68 +632,8 @@ Info 55 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:14.000] response: { "response": { @@ -1012,36 +682,6 @@ Info 57 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 59 [00:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 59 [00:02:18.000] Files (3) @@ -1075,7 +715,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1103,38 +743,6 @@ Info 60 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:29.000] Search path: /user/username/projects/myproject/random Info 63 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1173,6 +781,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1198,36 +810,6 @@ Info 65 [00:02:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 67 [00:02:46.000] Files (3) @@ -1261,7 +843,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1289,38 +871,6 @@ Info 68 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:02:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 70 [00:02:58.000] Files (3) @@ -1354,7 +904,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1382,40 +932,6 @@ Info 71 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 73 [00:03:07.000] Search path: /user/username/projects/myproject/random Info 74 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1464,16 +980,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 93 [00:03:33.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js index 42801e3a58a1e..a6b797ff25168 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -571,36 +481,6 @@ export function fn5() { } -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 54 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 55 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -636,36 +516,6 @@ Info 60 [00:02:40.000] FileName: /user/username/projects/myproject/random/ran Info 60 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:42.000] request: { "command": "definitionAndBoundSpan", @@ -679,68 +529,8 @@ Info 60 [00:02:42.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:43.000] response: { "response": { @@ -791,68 +581,8 @@ Info 62 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:45.000] response: { "response": { @@ -903,68 +633,8 @@ Info 64 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:47.000] response: { "response": { @@ -1015,68 +685,8 @@ Info 66 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:49.000] response: { "response": { @@ -1127,68 +737,8 @@ Info 68 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:51.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js index db94bb5e32824..bcdd560d1b114 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -582,71 +492,11 @@ export function fn5() { } -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 55 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 56 [00:02:16.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -697,68 +547,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { @@ -809,68 +599,8 @@ Info 60 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:21.000] response: { "response": { @@ -921,68 +651,8 @@ Info 62 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:23.000] response: { "response": { @@ -1033,68 +703,8 @@ Info 64 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js index 803841a83f8ca..f1bddd72ca15f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -572,136 +482,16 @@ Info 49 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:07.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:08.000] request: { "command": "definitionAndBoundSpan", @@ -715,71 +505,11 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 53 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 54 [00:02:11.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:12.000] response: { "response": { @@ -830,68 +560,8 @@ Info 56 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:14.000] response: { "response": { @@ -942,68 +612,8 @@ Info 58 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:16.000] response: { "response": { @@ -1054,68 +664,8 @@ Info 60 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:18.000] response: { "response": { @@ -1166,68 +716,8 @@ Info 62 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:20.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js index 52bbc4732d2ef..fb89f29230368 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -301,27 +295,27 @@ Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:34.000] response: @@ -339,30 +333,6 @@ Info 29 [00:01:35.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:36.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -415,7 +385,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -427,7 +397,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -437,7 +407,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:03.000] response: @@ -457,68 +427,8 @@ Info 47 [00:02:04.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:05.000] response: { "response": { @@ -572,68 +482,8 @@ Info 49 [00:02:06.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:02:07.000] response: { "responseRequired": false @@ -651,71 +501,11 @@ Info 51 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 53 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 54 [00:02:11.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:12.000] response: { "response": { @@ -766,68 +556,8 @@ Info 56 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:14.000] response: { "response": { @@ -878,68 +608,8 @@ Info 58 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:16.000] response: { "response": { @@ -990,68 +660,8 @@ Info 60 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:18.000] response: { "response": { @@ -1102,68 +712,8 @@ Info 62 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:20.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js index 300a3b4d0d6ec..929954e12d9d3 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js @@ -59,12 +59,6 @@ let a = 10; {} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/main Info 3 [00:00:38.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -138,27 +132,27 @@ Info 28 [00:01:08.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} Info 28 [00:01:09.000] response: @@ -176,30 +170,6 @@ Info 29 [00:01:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} - Info 30 [00:01:11.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:13.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -254,7 +224,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -266,7 +236,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -274,7 +244,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/dependency: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:01:38.000] response: @@ -294,68 +264,8 @@ Info 47 [00:01:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:01:40.000] response: { "response": { @@ -406,68 +316,8 @@ Info 49 [00:01:41.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 50 [00:01:42.000] response: { "response": { @@ -518,68 +368,8 @@ Info 51 [00:01:43.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:01:44.000] response: { "response": { @@ -626,71 +416,11 @@ Info 53 [00:01:45.000] request: "offset": 1 }, "seq": 6, - "type": "request" - } -Before request - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} + "type": "request" + } +Before request -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} +After request Info 54 [00:01:46.000] response: { @@ -742,68 +472,8 @@ Info 55 [00:01:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:01:48.000] response: { "response": { @@ -852,36 +522,6 @@ Info 57 [00:01:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 59 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 59 [00:01:52.000] Files (3) @@ -917,7 +557,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -943,38 +583,6 @@ Info 60 [00:02:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 62 [00:02:03.000] Search path: /user/username/projects/myproject/random Info 63 [00:02:04.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1015,6 +623,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1038,36 +650,6 @@ Info 65 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 67 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 67 [00:02:20.000] Files (3) @@ -1103,7 +685,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1129,38 +711,6 @@ Info 68 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 70 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 70 [00:02:32.000] Files (3) @@ -1196,7 +746,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1222,40 +772,6 @@ Info 71 [00:02:39.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/decls: - {"pollingInterval":500} -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 73 [00:02:41.000] Search path: /user/username/projects/myproject/random Info 74 [00:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1304,16 +820,40 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls: + {"pollingInterval":500} +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} + Info 93 [00:03:07.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js index b7234985a3b94..b73143a039255 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -576,76 +516,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "response": { @@ -696,76 +568,8 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] response: { "response": { @@ -816,76 +620,8 @@ Info 55 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:16.000] response: { "response": { @@ -936,76 +672,8 @@ Info 57 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:18.000] response: { "response": { @@ -1054,40 +722,6 @@ Info 59 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 61 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 61 [00:02:22.000] Files (3) @@ -1125,7 +759,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1153,42 +787,6 @@ Info 62 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 64 [00:02:33.000] Search path: /user/username/projects/myproject/random Info 65 [00:02:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1231,6 +829,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1256,40 +858,6 @@ Info 67 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 68 [00:02:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 69 [00:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 69 [00:02:50.000] Files (3) @@ -1327,7 +895,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1355,42 +923,6 @@ Info 70 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 72 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 72 [00:03:02.000] Files (3) @@ -1428,7 +960,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1456,44 +988,6 @@ Info 73 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:03:11.000] Search path: /user/username/projects/myproject/random Info 76 [00:03:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1544,16 +1038,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 97 [00:03:39.000] response: { "responseRequired": false 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 439ea0a3f8195..60af2756bad75 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -578,40 +518,6 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 56 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 57 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -647,40 +553,6 @@ Info 62 [00:02:45.000] FileName: /user/username/projects/myproject/random/ran Info 62 [00:02:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:47.000] request: { "command": "definitionAndBoundSpan", @@ -694,76 +566,8 @@ Info 62 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:48.000] response: { "response": { @@ -814,76 +618,8 @@ Info 64 [00:02:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:50.000] response: { "response": { @@ -934,76 +670,8 @@ Info 66 [00:02:51.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:52.000] response: { "response": { @@ -1054,76 +722,8 @@ Info 68 [00:02:53.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:54.000] response: { "response": { @@ -1174,76 +774,8 @@ Info 70 [00:02:55.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:56.000] response: { "response": { 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 e7fef72fff732..1e9033847b5a8 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -589,79 +529,11 @@ export declare function fn6(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 57 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 58 [00:02:21.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:22.000] response: { "response": { @@ -712,76 +584,8 @@ Info 60 [00:02:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:24.000] response: { "response": { @@ -832,76 +636,8 @@ Info 62 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:26.000] response: { "response": { @@ -952,76 +688,8 @@ Info 64 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:28.000] response: { "response": { @@ -1072,76 +740,8 @@ Info 66 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:30.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js index c71947be33970..4ec9e1d720838 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -290,25 +284,25 @@ Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 27 [00:01:37.000] response: @@ -326,28 +320,6 @@ Info 28 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 29 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 30 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 31 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -400,7 +372,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -410,7 +382,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -420,7 +392,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 45 [00:02:06.000] response: @@ -440,64 +412,8 @@ Info 46 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:08.000] response: { "response": { @@ -559,34 +475,6 @@ export declare function fn5(): void; //# sourceMappingURL=FnS.d.ts.map -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:15.000] Scheduled: *ensureProjectForOpenFiles* Info 53 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 54 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info @@ -627,11 +515,11 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -694,76 +582,8 @@ Info 62 [00:02:25.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:26.000] response: { "response": { @@ -814,76 +634,8 @@ Info 64 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:28.000] response: { "response": { @@ -934,76 +686,8 @@ Info 66 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:30.000] response: { "response": { @@ -1054,76 +738,8 @@ Info 68 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:32.000] response: { "response": { @@ -1172,40 +788,6 @@ Info 70 [00:02:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 72 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 72 [00:02:36.000] Files (3) @@ -1243,7 +825,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1271,42 +853,6 @@ Info 73 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 74 [00:02:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 75 [00:02:47.000] Search path: /user/username/projects/myproject/random Info 76 [00:02:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1349,6 +895,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1374,40 +924,6 @@ Info 78 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 79 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 80 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 80 [00:03:04.000] Files (3) @@ -1445,7 +961,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1473,42 +989,6 @@ Info 81 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 82 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 83 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 83 [00:03:16.000] Files (3) @@ -1546,7 +1026,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1574,44 +1054,6 @@ Info 84 [00:03:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 86 [00:03:25.000] Search path: /user/username/projects/myproject/random Info 87 [00:03:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1662,16 +1104,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 108 [00:03:53.000] response: { "responseRequired": false 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 94505155633a7..16f7c0d8ddda9 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 @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -607,6 +547,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -633,38 +577,6 @@ Info 63 [00:02:24.000] Files (2) Info 64 [00:02:25.000] ----------------------------------------------- After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:26.000] response: { "response": { @@ -715,72 +627,8 @@ Info 66 [00:02:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:28.000] response: { "response": { @@ -831,72 +679,8 @@ Info 68 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 69 [00:02:30.000] response: { "response": { @@ -947,71 +731,7 @@ Info 70 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - -After request - -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} +After request Info 71 [00:02:32.000] response: { @@ -1063,72 +783,8 @@ Info 72 [00:02:33.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:02:34.000] response: { "response": { @@ -1177,38 +833,6 @@ Info 74 [00:02:35.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 76 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 76 [00:02:38.000] Files (2) @@ -1244,7 +868,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1272,40 +896,6 @@ Info 77 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 78 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 79 [00:02:49.000] Search path: /user/username/projects/myproject/random Info 80 [00:02:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1344,6 +934,14 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1369,34 +967,6 @@ Info 84 [00:03:05.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 85 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 86 [00:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 86 [00:03:08.000] Files (2) @@ -1428,7 +998,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1456,36 +1026,6 @@ Info 87 [00:03:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 88 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 89 [00:03:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 89 [00:03:20.000] Files (2) @@ -1517,7 +1057,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1545,38 +1085,6 @@ Info 90 [00:03:27.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 91 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 92 [00:03:29.000] Search path: /user/username/projects/myproject/random Info 93 [00:03:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1621,16 +1129,38 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 111 [00:03:54.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js index abd22e2d6e360..38288fc3ed15b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js @@ -214,12 +214,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -290,25 +284,25 @@ Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 27 [00:01:37.000] response: @@ -326,28 +320,6 @@ Info 28 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 29 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 30 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 31 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -400,7 +372,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -410,7 +382,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -420,7 +392,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 45 [00:02:06.000] response: @@ -440,64 +412,8 @@ Info 46 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 47 [00:02:08.000] response: { "response": { @@ -548,64 +464,8 @@ Info 48 [00:02:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 49 [00:02:10.000] response: { "response": { @@ -656,64 +516,8 @@ Info 50 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:12.000] response: { "response": { @@ -764,64 +568,8 @@ Info 52 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:14.000] response: { "response": { @@ -872,64 +620,8 @@ Info 54 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:16.000] response: { "response": { @@ -978,34 +670,6 @@ Info 56 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 58 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 58 [00:02:20.000] Files (2) @@ -1037,7 +701,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1065,36 +729,6 @@ Info 59 [00:02:29.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 61 [00:02:31.000] Search path: /user/username/projects/myproject/random Info 62 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1131,6 +765,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1156,34 +794,6 @@ Info 64 [00:02:45.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 66 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 66 [00:02:48.000] Files (2) @@ -1215,7 +825,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1243,36 +853,6 @@ Info 67 [00:02:57.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 68 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 69 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 69 [00:03:00.000] Files (2) @@ -1304,7 +884,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1332,38 +912,6 @@ Info 70 [00:03:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 71 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 72 [00:03:09.000] Search path: /user/username/projects/myproject/random Info 73 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1408,16 +956,38 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 91 [00:03:34.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index e2cd38d6a7097..62b3993640785 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -572,40 +512,6 @@ Before running timeout callbacks {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:18.000] Running: /user/username/projects/myproject/main/tsconfig.json Info 56 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 57 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms @@ -640,40 +546,6 @@ Info 61 [00:02:44.000] FileName: /user/username/projects/myproject/random/ran Info 61 [00:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:46.000] request: { "command": "definitionAndBoundSpan", @@ -687,76 +559,8 @@ Info 61 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:47.000] response: { "response": { @@ -807,76 +611,8 @@ Info 63 [00:02:48.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:49.000] response: { "response": { @@ -927,76 +663,8 @@ Info 65 [00:02:50.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:51.000] response: { "response": { @@ -1047,76 +715,8 @@ Info 67 [00:02:52.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 68 [00:02:53.000] response: { "response": { @@ -1167,76 +767,8 @@ Info 69 [00:02:54.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:02:55.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js index afe8dcb51263c..461badc76b62a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -583,78 +523,10 @@ Before request {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 56 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 57 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 58 [00:02:21.000] response: { "response": { @@ -705,76 +577,8 @@ Info 59 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 60 [00:02:23.000] response: { "response": { @@ -825,76 +629,8 @@ Info 61 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:25.000] response: { "response": { @@ -945,76 +681,8 @@ Info 63 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:27.000] response: { "response": { @@ -1065,76 +733,8 @@ Info 65 [00:02:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:29.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js index 2c1784edd8d3e..45bfb3273ac0b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -299,27 +293,27 @@ Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:38.000] response: @@ -337,30 +331,6 @@ Info 29 [00:01:39.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -413,7 +383,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -425,7 +395,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -435,7 +405,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:07.000] response: @@ -455,36 +425,6 @@ Info 47 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -495,7 +435,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -588,6 +528,10 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /user/username/projects/myproject/main/tsconfig.json: {} @@ -635,9 +579,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -700,76 +644,8 @@ Info 63 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:27.000] response: { "response": { @@ -820,76 +696,8 @@ Info 65 [00:02:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:29.000] response: { "response": { @@ -940,76 +748,8 @@ Info 67 [00:02:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 68 [00:02:31.000] response: { "response": { @@ -1060,76 +800,8 @@ Info 69 [00:02:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:02:33.000] response: { "response": { @@ -1178,40 +850,6 @@ Info 71 [00:02:34.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:02:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 73 [00:02:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 73 [00:02:37.000] Files (3) @@ -1249,7 +887,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1277,42 +915,6 @@ Info 74 [00:02:46.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 76 [00:02:48.000] Search path: /user/username/projects/myproject/random Info 77 [00:02:49.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1355,6 +957,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1380,40 +986,6 @@ Info 79 [00:03:02.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 80 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 81 [00:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 81 [00:03:05.000] Files (3) @@ -1451,7 +1023,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1479,42 +1051,6 @@ Info 82 [00:03:14.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 83 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 84 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 84 [00:03:17.000] Files (3) @@ -1552,7 +1088,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1580,44 +1116,6 @@ Info 85 [00:03:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 86 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 87 [00:03:26.000] Search path: /user/username/projects/myproject/random Info 88 [00:03:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1668,16 +1166,44 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/decls/fns.d.ts.map: + {} +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 109 [00:03:54.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js index 54d02e3729723..c273bba1f09bc 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -606,6 +546,10 @@ FsWatches:: /user/username/projects/myproject/dependency/fns.ts: {} +FsWatches *deleted*:: +/user/username/projects/myproject/decls/fns.d.ts.map: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -628,7 +572,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -705,76 +649,8 @@ Info 63 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 64 [00:02:25.000] response: { "response": { @@ -825,76 +701,8 @@ Info 65 [00:02:26.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 66 [00:02:27.000] response: { "response": { @@ -945,76 +753,8 @@ Info 67 [00:02:28.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 68 [00:02:29.000] response: { "response": { @@ -1065,76 +805,8 @@ Info 69 [00:02:30.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:02:31.000] response: { "response": { @@ -1183,40 +855,6 @@ Info 71 [00:02:32.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 72 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 73 [00:02:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 73 [00:02:35.000] Files (3) @@ -1254,7 +892,7 @@ FsWatches:: {} /user/username/projects/myproject/dependency/fns.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1282,42 +920,6 @@ Info 74 [00:02:44.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 75 [00:02:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 76 [00:02:46.000] Search path: /user/username/projects/myproject/random Info 77 [00:02:47.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1359,6 +961,12 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/dependency/fns.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1384,38 +992,6 @@ Info 80 [00:03:01.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 81 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 82 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 82 [00:03:04.000] Files (3) @@ -1451,7 +1027,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1479,40 +1055,6 @@ Info 83 [00:03:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 84 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 85 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 85 [00:03:16.000] Files (3) @@ -1548,7 +1090,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1576,42 +1118,6 @@ Info 86 [00:03:23.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 88 [00:03:25.000] Search path: /user/username/projects/myproject/random Info 89 [00:03:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1661,16 +1167,42 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 109 [00:03:52.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js index 8354e3c7cee1f..1fb7c351d48be 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js @@ -219,12 +219,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -299,27 +293,27 @@ Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:38.000] response: @@ -337,30 +331,6 @@ Info 29 [00:01:39.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -413,7 +383,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -425,7 +395,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -435,7 +405,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:07.000] response: @@ -455,36 +425,6 @@ Info 47 [00:02:08.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request @@ -495,7 +435,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {"pollingInterval":2000} FsWatches:: @@ -570,72 +510,8 @@ Info 50 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 51 [00:02:12.000] response: { "response": { @@ -686,72 +562,8 @@ Info 52 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:14.000] response: { "response": { @@ -802,72 +614,8 @@ Info 54 [00:02:15.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 55 [00:02:16.000] response: { "response": { @@ -918,72 +666,8 @@ Info 56 [00:02:17.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:18.000] response: { "response": { @@ -1032,38 +716,6 @@ Info 58 [00:02:19.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 60 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 60 [00:02:22.000] Files (3) @@ -1099,7 +751,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1127,40 +779,6 @@ Info 61 [00:02:31.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 62 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 63 [00:02:33.000] Search path: /user/username/projects/myproject/random Info 64 [00:02:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1201,6 +819,10 @@ FsWatches:: /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/main: {} @@ -1226,38 +848,6 @@ Info 66 [00:02:47.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 67 [00:02:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info 68 [00:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 68 [00:02:50.000] Files (3) @@ -1293,7 +883,7 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/main/main.ts: +/user/username/projects/myproject/main/main.ts: *new* {} FsWatchesRecursive:: @@ -1321,40 +911,6 @@ Info 69 [00:02:59.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 70 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 71 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info 71 [00:03:02.000] Files (3) @@ -1390,7 +946,7 @@ FsWatches:: {} /user/username/projects/myproject/main/main.ts: {} -/user/username/projects/myproject/random/random.ts: +/user/username/projects/myproject/random/random.ts: *new* {} FsWatchesRecursive:: @@ -1418,42 +974,6 @@ Info 72 [00:03:09.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/decls/fns.d.ts.map: - {"pollingInterval":2000} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/main/main.ts: - {} -/user/username/projects/myproject/random/random.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 73 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info Info 74 [00:03:11.000] Search path: /user/username/projects/myproject/random Info 75 [00:03:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json @@ -1503,16 +1023,42 @@ PolledWatches:: /user/username/projects/myproject/random/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/projects/myproject/main/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/myproject/decls/fns.d.ts.map: + {"pollingInterval":2000} + FsWatches:: /a/lib/lib.d.ts: {} /user/username/projects/myproject/random/tsconfig.json: {} +FsWatches *deleted*:: +/user/username/projects/myproject/main/tsconfig.json: + {} +/user/username/projects/myproject/dependency/tsconfig.json: + {} +/user/username/projects/myproject/decls/fns.d.ts: + {} +/user/username/projects/myproject/main/main.ts: + {} +/user/username/projects/myproject/random/random.ts: + {} + FsWatchesRecursive:: /user/username/projects/myproject/random: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/main: + {} +/user/username/projects/myproject/dependency: + {} +/user/username/projects/myproject/decls: + {} + Info 95 [00:03:38.000] response: { "responseRequired": false diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index b48b4838921f4..95419da2bde06 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -579,152 +519,16 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "responseRequired": false } Before running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After running timeout callbacks -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", @@ -738,79 +542,11 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 55 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 56 [00:02:16.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -861,76 +597,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { @@ -981,76 +649,8 @@ Info 60 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:21.000] response: { "response": { @@ -1101,76 +701,8 @@ Info 62 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:23.000] response: { "response": { @@ -1221,76 +753,8 @@ Info 64 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js index 835da94ca7d4b..9d44db07246cc 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js @@ -222,12 +222,6 @@ export {}; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json @@ -302,27 +296,27 @@ Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsco After request PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: +/user/username/projects/myproject/main/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: +/user/username/projects/myproject/main/tsconfig.json: *new* {} -/user/username/projects/myproject/dependency/tsconfig.json: +/user/username/projects/myproject/dependency/tsconfig.json: *new* {} -/user/username/projects/myproject/decls/fns.d.ts: +/user/username/projects/myproject/decls/fns.d.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/main: +/user/username/projects/myproject/main: *new* {} -/user/username/projects/myproject/dependency: +/user/username/projects/myproject/dependency: *new* {} -/user/username/projects/myproject/decls: +/user/username/projects/myproject/decls: *new* {} Info 28 [00:01:37.000] response: @@ -340,30 +334,6 @@ Info 29 [00:01:38.000] request: } Before request -PolledWatches:: -/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/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} - Info 30 [00:01:39.000] Search path: /user/username/projects/myproject/random Info 31 [00:01:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json Info 32 [00:01:41.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json @@ -416,7 +386,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: +/user/username/projects/myproject/random/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -428,7 +398,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/random/tsconfig.json: +/user/username/projects/myproject/random/tsconfig.json: *new* {} FsWatchesRecursive:: @@ -438,7 +408,7 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/decls: {} -/user/username/projects/myproject/random: +/user/username/projects/myproject/random: *new* {} Info 46 [00:02:06.000] response: @@ -458,36 +428,6 @@ Info 47 [00:02:07.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 48 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request @@ -511,9 +451,9 @@ FsWatches:: {} /user/username/projects/myproject/random/tsconfig.json: {} -/user/username/projects/myproject/decls/fns.d.ts.map: +/user/username/projects/myproject/decls/fns.d.ts.map: *new* {} -/user/username/projects/myproject/dependency/fns.ts: +/user/username/projects/myproject/dependency/fns.ts: *new* {} FsWatchesRecursive:: @@ -579,76 +519,8 @@ Info 51 [00:02:11.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 52 [00:02:12.000] response: { "responseRequired": false @@ -666,79 +538,11 @@ Info 53 [00:02:13.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 54 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Info 55 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms Info 56 [00:02:16.000] Different program with same set of files After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 57 [00:02:17.000] response: { "response": { @@ -789,76 +593,8 @@ Info 58 [00:02:18.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 59 [00:02:19.000] response: { "response": { @@ -909,76 +645,8 @@ Info 60 [00:02:20.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 61 [00:02:21.000] response: { "response": { @@ -1029,76 +697,8 @@ Info 62 [00:02:22.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 63 [00:02:23.000] response: { "response": { @@ -1149,76 +749,8 @@ Info 64 [00:02:24.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - After request -PolledWatches:: -/user/username/projects/myproject/main/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/random/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/main/tsconfig.json: - {} -/user/username/projects/myproject/dependency/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/random/tsconfig.json: - {} -/user/username/projects/myproject/decls/fns.d.ts.map: - {} -/user/username/projects/myproject/dependency/fns.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/main: - {} -/user/username/projects/myproject/dependency: - {} -/user/username/projects/myproject/decls: - {} -/user/username/projects/myproject/random: - {} - Info 65 [00:02:25.000] response: { "response": { diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js index a207727133b84..72bcb0b822a52 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js @@ -32,12 +32,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"typeRoots":[]}} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/b/project Info 3 [00:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/b/project/tsconfig.json @@ -85,19 +79,19 @@ Info 18 [00:00:42.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: -/a/b/project/node_modules: +/a/b/project/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: +/a/b/project/tsconfig.json: *new* {} -/a/b/project/file3.ts: +/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b/project: +/a/b/project: *new* {} Info 18 [00:00:43.000] response: @@ -113,22 +107,6 @@ Before checking timeout queue length (2) and running export class c { }export class d {} -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Info 23 [00:00:51.000] Running: /a/b/project/tsconfig.json Info 24 [00:00:52.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json Info 25 [00:00:53.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -152,93 +130,13 @@ Info 30 [00:01:08.000] FileName: /a/b/project/file1.ts ProjectRootPath: undef Info 30 [00:01:09.000] Projects: /a/b/project/tsconfig.json After checking timeout queue length (2) and running -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Before running timeout callbacks //// [/a/b/node_modules/file2.d.ts] export class a { } -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - After running timeout callbacks -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Before running timeout callbacks -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - After running timeout callbacks - -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js index 200c178a9f5d7..777b2bd70f00e 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js @@ -32,12 +32,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"typeRoots":[]}} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project Info 3 [00:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json @@ -91,25 +85,25 @@ Info 24 [00:00:58.000] Projects: /user/username/rootfolder/otherfolder/a/b/p After request PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: +/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: +/user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: +/user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: +/user/username/rootfolder/otherfolder/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: +/user/username/rootfolder/otherfolder/a/b/project: *new* {} Info 24 [00:00:59.000] response: @@ -125,28 +119,6 @@ Before checking timeout queue length (2) and running export class c { }export class d {} -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Info 29 [00:01:07.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 30 [00:01:08.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 31 [00:01:09.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -170,28 +142,6 @@ Info 36 [00:01:24.000] FileName: /user/username/rootfolder/otherfolder/a/b/pr Info 36 [00:01:25.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After checking timeout queue length (2) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Info 36 [00:01:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info 37 [00:01:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation Info 38 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations @@ -214,6 +164,10 @@ PolledWatches:: /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/b/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} @@ -225,7 +179,7 @@ FsWatches:: FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} Info 45 [00:01:40.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation @@ -233,52 +187,8 @@ Info 46 [00:01:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/pr Info 47 [00:01:42.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 48 [00:01:43.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 49 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 50 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache @@ -329,6 +239,12 @@ PolledWatches:: /user/username/rootfolder/otherfolder/a/b/project/node_modules: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/node_modules: + {"pollingInterval":500} +/user/username/rootfolder/otherfolder/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index ed87bb77debae..a44226bad2d31 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -32,12 +32,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"typeRoots":[]}} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/b/project Info 3 [00:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/b/project/tsconfig.json @@ -93,19 +87,19 @@ Info 22 [00:00:46.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: -/a/b/project/node_modules: +/a/b/project/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: +/a/b/project/tsconfig.json: *new* {} -/a/b/project/file3.ts: +/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b/project: +/a/b/project: *new* {} Info 22 [00:00:47.000] response: @@ -121,22 +115,6 @@ Before checking timeout queue length (2) and running export class c { }export class d {} -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Info 27 [00:00:55.000] Running: /a/b/project/tsconfig.json Info 28 [00:00:56.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json Info 29 [00:00:57.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -163,111 +141,15 @@ Info 35 [00:01:15.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Checking timeout queue length: 0 -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Before running timeout callbacks //// [/a/b/node_modules/file2.d.ts] export class a { } -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - After running timeout callbacks -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Before running timeout callbacks -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - After running timeout callbacks - -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index 306c3b16ba7fa..a316202aa8194 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -32,12 +32,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"typeRoots":[]}} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project Info 3 [00:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json @@ -99,25 +93,25 @@ Info 28 [00:01:02.000] Projects: /user/username/rootfolder/otherfolder/a/b/p After request PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: +/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: +/user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: +/user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: +/user/username/rootfolder/otherfolder/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: +/user/username/rootfolder/otherfolder/a/b/project: *new* {} Info 28 [00:01:03.000] response: @@ -133,28 +127,6 @@ Before checking timeout queue length (2) and running export class c { }export class d {} -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Info 33 [00:01:11.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 34 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 35 [00:01:13.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -181,52 +153,8 @@ Info 41 [00:01:31.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Checking timeout queue length: 0 -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Info 42 [00:01:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info 43 [00:01:36.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation Info 44 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations @@ -249,6 +177,10 @@ PolledWatches:: /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/b/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} @@ -260,7 +192,7 @@ FsWatches:: FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} Info 51 [00:01:46.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation @@ -268,52 +200,8 @@ Info 52 [00:01:47.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/pr Info 53 [00:01:48.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Before running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Info 54 [00:01:49.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 55 [00:01:50.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 56 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache @@ -367,24 +255,10 @@ PolledWatches:: /user/username/rootfolder/otherfolder/a/b/project/node_modules: {"pollingInterval":500} -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - -Checking timeout queue length: 0 - -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/node_modules: + {"pollingInterval":500} +/user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} FsWatches:: @@ -400,3 +274,5 @@ FsWatchesRecursive:: {} /user/username/rootfolder/otherfolder/a/b/node_modules: {} + +Checking timeout queue length: 0 diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index 4e272ad822232..eb5a92c361c41 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -32,12 +32,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"typeRoots":[]}} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:21.000] Search path: /a/b/project Info 3 [00:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json Info 4 [00:00:23.000] Creating configuration project /a/b/project/tsconfig.json @@ -93,19 +87,19 @@ Info 22 [00:00:46.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: -/a/b/project/node_modules: +/a/b/project/node_modules: *new* {"pollingInterval":500} FsWatches:: -/a/b/project/tsconfig.json: +/a/b/project/tsconfig.json: *new* {} -/a/b/project/file3.ts: +/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b/project: +/a/b/project: *new* {} Info 22 [00:00:47.000] response: @@ -121,22 +115,6 @@ Before checking timeout queue length (2) and running export class c { }export class d {} -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Info 27 [00:00:55.000] Running: /a/b/project/tsconfig.json Info 28 [00:00:56.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json Info 29 [00:00:57.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -163,113 +141,17 @@ Info 35 [00:01:15.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Checking timeout queue length: 1 -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Before running timeout callbacks //// [/a/b/node_modules/file2.d.ts] export class a { } -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Info 36 [00:01:21.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/project/file1.ts","diagnostics":[]}} After running timeout callbacks -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - Before running timeout callbacks -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} - After running timeout callbacks - -PolledWatches:: -/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/a/b/project/tsconfig.json: - {} -/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/project: - {} diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index b1b3a6d85ed58..6008bc9652cfa 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -32,12 +32,6 @@ interface Array { length: number; [n: number]: T; } {"compilerOptions":{"typeRoots":[]}} -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project Info 3 [00:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 4 [00:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json @@ -99,25 +93,25 @@ Info 28 [00:01:02.000] Projects: /user/username/rootfolder/otherfolder/a/b/p After request PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: +/user/username/rootfolder/otherfolder/a/b/project/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: +/user/username/rootfolder/otherfolder/a/node_modules: *new* {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: +/user/username/rootfolder/otherfolder/node_modules: *new* {"pollingInterval":500} FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: +/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: *new* {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: +/user/username/rootfolder/otherfolder/a/b/project/file3.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: +/user/username/rootfolder/otherfolder/a/b/project: *new* {} Info 28 [00:01:03.000] response: @@ -133,28 +127,6 @@ Before checking timeout queue length (2) and running export class c { }export class d {} -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Info 33 [00:01:11.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 34 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Info 35 [00:01:13.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms @@ -181,52 +153,8 @@ Info 41 [00:01:31.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Checking timeout queue length: 1 -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/a/node_modules: - {"pollingInterval":500} -/user/username/rootfolder/otherfolder/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} - Info 42 [00:01:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info 43 [00:01:36.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation Info 44 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations @@ -249,6 +177,10 @@ PolledWatches:: /user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/b/node_modules: + {"pollingInterval":500} + FsWatches:: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: {} @@ -260,7 +192,7 @@ FsWatches:: FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -/user/username/rootfolder/otherfolder/a/b/node_modules: +/user/username/rootfolder/otherfolder/a/b/node_modules: *new* {} Info 51 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles* @@ -298,24 +230,10 @@ PolledWatches:: /user/username/rootfolder/otherfolder/a/b/project/node_modules: {"pollingInterval":500} -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - -Before running timeout callbacks - -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: +PolledWatches *deleted*:: +/user/username/rootfolder/otherfolder/a/node_modules: + {"pollingInterval":500} +/user/username/rootfolder/otherfolder/node_modules: {"pollingInterval":500} FsWatches:: @@ -332,6 +250,8 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} +Before running timeout callbacks + Info 64 [00:01:59.000] Running: *ensureProjectForOpenFiles* Info 65 [00:02:00.000] Before ensureProjectForOpenFiles: Info 66 [00:02:01.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) @@ -354,40 +274,4 @@ Info 68 [00:02:15.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After running timeout callbacks -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} - Checking timeout queue length: 1 - -PolledWatches:: -/user/username/rootfolder/otherfolder/a/b/project/node_modules: - {"pollingInterval":500} - -FsWatches:: -/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json: - {} -/user/username/rootfolder/otherfolder/a/b/project/file3.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/rootfolder/otherfolder/a/b/project: - {} -/user/username/rootfolder/otherfolder/a/b/node_modules: - {} diff --git a/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context-with-lazyConfiguredProjectsFromExternalProject.js b/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context-with-lazyConfiguredProjectsFromExternalProject.js index a82de146c747b..0173f437af7d7 100644 --- a/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context-with-lazyConfiguredProjectsFromExternalProject.js +++ b/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context-with-lazyConfiguredProjectsFromExternalProject.js @@ -21,22 +21,10 @@ const b = 1; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] response: {"seq":0,"type":"response","command":"configure","request_seq":1,"success":true} After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 3 [00:00:12.000] response: { "responseRequired": false @@ -58,12 +46,6 @@ Info 4 [00:00:13.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 5 [00:00:14.000] reload projects. Info 6 [00:00:15.000] Before ensureProjectForOpenFiles: Info 7 [00:00:16.000] Open files: @@ -74,12 +56,6 @@ Info 9 [00:00:20.000] response: {"seq":0,"type":"response","command":"configure","request_seq":2,"success":true} After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 10 [00:00:21.000] response: { "responseRequired": false @@ -107,24 +83,14 @@ Info 11 [00:00:22.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:23.000] Creating configuration project /tsconfig.json Info 13 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file After request -PolledWatches:: - FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} -FsWatchesRecursive:: - Info 14 [00:00:25.000] response: { "response": true, diff --git a/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context.js b/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context.js index 88f459a06f8ad..898ad9c253c6f 100644 --- a/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context.js +++ b/tests/baselines/reference/tsserver/projects/deferred-files-in-the-project-context.js @@ -21,22 +21,10 @@ const b = 1; -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:11.000] response: {"seq":0,"type":"response","command":"configure","request_seq":1,"success":true} After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 3 [00:00:12.000] response: { "responseRequired": false @@ -58,12 +46,6 @@ Info 4 [00:00:13.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 5 [00:00:14.000] reload projects. Info 6 [00:00:15.000] Before ensureProjectForOpenFiles: Info 7 [00:00:16.000] Open files: @@ -74,12 +56,6 @@ Info 9 [00:00:20.000] response: {"seq":0,"type":"response","command":"configure","request_seq":2,"success":true} After request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 10 [00:00:21.000] response: { "responseRequired": false @@ -107,12 +83,6 @@ Info 11 [00:00:22.000] request: } Before request -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 12 [00:00:23.000] Creating configuration project /tsconfig.json Info 13 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file Info 14 [00:00:25.000] Config: /tsconfig.json : { @@ -140,15 +110,15 @@ Info 22 [00:00:33.000] ----------------------------------------------- After request PolledWatches:: -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {"pollingInterval":500} FsWatches:: -/tsconfig.json: +/tsconfig.json: *new* {} FsWatchesRecursive:: -/: +/: *new* {} Info 23 [00:00:34.000] response: diff --git a/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js index 16334c1cb0aea..391f8eeaba384 100644 --- a/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js @@ -38,12 +38,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/playground Info 3 [00:00:38.000] For info: /user/username/projects/myproject/playground/tests.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig.json Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig.json @@ -97,23 +91,23 @@ Info 21 [00:01:01.000] Projects: /user/username/projects/myproject/playgroun After request PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: +/user/username/projects/myproject/playground/node_modules/@types: *new* {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: +/user/username/projects/myproject/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/user/username/projects/myproject/playground/tsconfig.json: +/user/username/projects/myproject/playground/tsconfig.json: *new* {} -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: +/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: *new* {} -/user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: +/user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/user/username/projects/myproject/playground: +/user/username/projects/myproject/playground: *new* {} Info 21 [00:01:02.000] response: @@ -131,26 +125,6 @@ Info 22 [00:01:03.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/playground/tsconfig.json: - {} -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: - {} -/user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/playground: - {} - Info 23 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info Info 24 [00:01:05.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) Info 24 [00:01:06.000] Files (4) @@ -174,7 +148,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/playground/tests.ts: +/user/username/projects/myproject/playground/tests.ts: *new* {} FsWatchesRecursive:: @@ -196,28 +170,6 @@ Info 25 [00:01:10.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/playground/tsconfig.json: - {} -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: - {} -/user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/playground/tests.ts: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/playground: - {} - Info 26 [00:01:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info Info 27 [00:01:12.000] Search path: /user/username/projects/myproject/playground/tsconfig-json/tests Info 28 [00:01:13.000] For info: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json @@ -294,7 +246,7 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: +/user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -302,11 +254,23 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: +/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: *new* + {} + +FsWatches *deleted*:: +/user/username/projects/myproject/playground/tsconfig.json: + {} +/user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts: + {} +/user/username/projects/myproject/playground/tests.ts: {} FsWatchesRecursive:: -/user/username/projects/myproject/playground/tsconfig-json/src: +/user/username/projects/myproject/playground/tsconfig-json/src: *new* + {} + +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/playground: {} Info 57 [00:01:48.000] response: @@ -324,26 +288,6 @@ Info 58 [00:01:49.000] request: } Before request -PolledWatches:: -/user/username/projects/myproject/playground/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/node_modules/@types: - {"pollingInterval":500} -/user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/user/username/projects/myproject/playground/tsconfig-json/src/src.ts: - {} -/a/lib/lib.d.ts: - {} -/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: - {} - -FsWatchesRecursive:: -/user/username/projects/myproject/playground/tsconfig-json/src: - {} - Info 59 [00:01:50.000] Before ensureProjectForOpenFiles: Info 60 [00:01:51.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) Info 60 [00:01:52.000] Files (2) @@ -402,19 +346,19 @@ PolledWatches:: {"pollingInterval":500} /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types: {"pollingInterval":500} -/user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json: +/user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json: +/user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/playground/tsconfig-json/jsconfig.json: +/user/username/projects/myproject/playground/tsconfig-json/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/playground/jsconfig.json: +/user/username/projects/myproject/playground/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/tsconfig.json: +/user/username/projects/myproject/tsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/jsconfig.json: +/user/username/projects/myproject/jsconfig.json: *new* {"pollingInterval":2000} -/user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types: +/user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: @@ -424,7 +368,7 @@ FsWatches:: {} /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json: {} -/user/username/projects/myproject/playground/tsconfig.json: +/user/username/projects/myproject/playground/tsconfig.json: *new* {} FsWatchesRecursive:: diff --git a/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js b/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js index cf0cef9d2629b..53ff77c0060c2 100644 --- a/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js +++ b/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js @@ -35,12 +35,6 @@ interface String { charAt: any; } interface Array { length: number; [n: number]: T; } -PolledWatches:: - -FsWatches:: - -FsWatchesRecursive:: - Info 2 [00:00:27.000] Search path: /a/b/projects/config Info 3 [00:00:28.000] For info: /a/b/projects/config/file.ts :: Config file name: /a/b/projects/config/tsconfig.json Info 4 [00:00:29.000] Creating configuration project /a/b/projects/config/tsconfig.json @@ -86,19 +80,19 @@ Info 18 [00:00:48.000] Projects: /a/b/projects/config/tsconfig.json After request PolledWatches:: -/a/b/projects/config/node_modules/@types: +/a/b/projects/config/node_modules/@types: *new* {"pollingInterval":500} FsWatches:: -/a/b/projects/config/tsconfig.json: +/a/b/projects/config/tsconfig.json: *new* {} -/a/b/projects/files/file1.ts: +/a/b/projects/files/file1.ts: *new* {} -/a/lib/lib.d.ts: +/a/lib/lib.d.ts: *new* {} FsWatchesRecursive:: -/a/b/projects/config: +/a/b/projects/config: *new* {} Info 18 [00:00:49.000] response: @@ -116,22 +110,6 @@ Info 19 [00:00:50.000] request: } Before request -PolledWatches:: -/a/b/projects/config/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/config/tsconfig.json: - {} -/a/b/projects/files/file1.ts: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/config: - {} - Info 20 [00:00:51.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info Info 21 [00:00:52.000] Search path: /a/b/projects/files Info 22 [00:00:53.000] For info: /a/b/projects/files/file1.ts :: No config files found. @@ -156,6 +134,10 @@ FsWatches:: /a/lib/lib.d.ts: {} +FsWatches *deleted*:: +/a/b/projects/files/file1.ts: + {} + FsWatchesRecursive:: /a/b/projects/config: {} @@ -175,20 +157,6 @@ Info 24 [00:01:03.000] request: } Before request -PolledWatches:: -/a/b/projects/config/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/config/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/config: - {} - Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info Info 26 [00:01:05.000] Project '/a/b/projects/config/tsconfig.json' (Configured) Info 26 [00:01:06.000] Files (3) @@ -208,7 +176,7 @@ FsWatches:: {} /a/lib/lib.d.ts: {} -/a/b/projects/config/file.ts: +/a/b/projects/config/file.ts: *new* {} FsWatchesRecursive:: @@ -230,22 +198,6 @@ Info 27 [00:01:12.000] request: } Before request -PolledWatches:: -/a/b/projects/config/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/b/projects/config/tsconfig.json: - {} -/a/lib/lib.d.ts: - {} -/a/b/projects/config/file.ts: - {} - -FsWatchesRecursive:: -/a/b/projects/config: - {} - Info 28 [00:01:13.000] Search path: /a/b/projects/files Info 29 [00:01:14.000] For info: /a/b/projects/files/file2.ts :: No config files found. Info 30 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root @@ -300,18 +252,30 @@ Info 49 [00:01:41.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: -/a/b/projects/files/tsconfig.json: +/a/b/projects/files/tsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/files/jsconfig.json: +/a/b/projects/files/jsconfig.json: *new* {"pollingInterval":2000} -/a/b/projects/files/node_modules/@types: +/a/b/projects/files/node_modules/@types: *new* + {"pollingInterval":500} + +PolledWatches *deleted*:: +/a/b/projects/config/node_modules/@types: {"pollingInterval":500} FsWatches:: /a/lib/lib.d.ts: {} -FsWatchesRecursive:: +FsWatches *deleted*:: +/a/b/projects/config/tsconfig.json: + {} +/a/b/projects/config/file.ts: + {} + +FsWatchesRecursive *deleted*:: +/a/b/projects/config: + {} Info 49 [00:01:42.000] response: { @@ -330,20 +294,6 @@ Info 50 [00:01:43.000] request: } Before request -PolledWatches:: -/a/b/projects/files/tsconfig.json: - {"pollingInterval":2000} -/a/b/projects/files/jsconfig.json: - {"pollingInterval":2000} -/a/b/projects/files/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 51 [00:01:44.000] Before ensureProjectForOpenFiles: Info 52 [00:01:45.000] Project '/dev/null/inferredProject1*' (Inferred) Info 52 [00:01:46.000] Files (2) @@ -386,20 +336,6 @@ Info 60 [00:02:10.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath Info 60 [00:02:11.000] Projects: /dev/null/inferredProject1* After request -PolledWatches:: -/a/b/projects/files/tsconfig.json: - {"pollingInterval":2000} -/a/b/projects/files/jsconfig.json: - {"pollingInterval":2000} -/a/b/projects/files/node_modules/@types: - {"pollingInterval":500} - -FsWatches:: -/a/lib/lib.d.ts: - {} - -FsWatchesRecursive:: - Info 60 [00:02:12.000] response: { "response": [], diff --git a/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js b/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js index b3c40a4bec226..96ab1d79b119d 100644 --- a/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js +++ b/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js @@ -4,12 +4,6 @@ Creating project service